cargo fmt fixup

This commit is contained in:
Jonah Caplan 2021-10-10 00:42:25 -04:00
parent 6b92c5db90
commit 08d913f167

View file

@ -1907,7 +1907,7 @@ fn test_error_if_hidden_not_set_and_pattern_starts_with_dot() {
fn test_no_strip() { fn test_no_strip() {
let te = TestEnv::new(DEFAULT_DIRS, DEFAULT_FILES); let te = TestEnv::new(DEFAULT_DIRS, DEFAULT_FILES);
te.assert_output( te.assert_output(
&["--no-strip"], &["--no-strip"],
"./a.foo "./a.foo
./e1 e2 ./e1 e2
./one ./one
@ -1918,23 +1918,23 @@ fn test_no_strip() {
./one/two/three ./one/two/three
./one/two/three/d.foo ./one/two/three/d.foo
./one/two/three/directory_foo ./one/two/three/directory_foo
./symlink" ./symlink",
); );
te.assert_output( te.assert_output(
&["--no-strip", "foo", "./one"], &["--no-strip", "foo", "./one"],
"./one/b.foo "./one/b.foo
./one/two/c.foo ./one/two/c.foo
./one/two/C.Foo2 ./one/two/C.Foo2
./one/two/three/d.foo ./one/two/three/d.foo
./one/two/three/directory_foo" ./one/two/three/directory_foo",
); );
te.assert_output( te.assert_output(
&["--no-strip", "foo", "one"], &["--no-strip", "foo", "one"],
"one/b.foo "one/b.foo
one/two/c.foo one/two/c.foo
one/two/C.Foo2 one/two/C.Foo2
one/two/three/d.foo one/two/three/d.foo
one/two/three/directory_foo" one/two/three/directory_foo",
); );
} }