cargo fmt fixup

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

View file

@ -1918,7 +1918,7 @@ fn test_no_strip() {
./one/two/three
./one/two/three/d.foo
./one/two/three/directory_foo
./symlink"
./symlink",
);
te.assert_output(
@ -1927,7 +1927,7 @@ fn test_no_strip() {
./one/two/c.foo
./one/two/C.Foo2
./one/two/three/d.foo
./one/two/three/directory_foo"
./one/two/three/directory_foo",
);
te.assert_output(
&["--no-strip", "foo", "one"],
@ -1935,6 +1935,6 @@ fn test_no_strip() {
one/two/c.foo
one/two/C.Foo2
one/two/three/d.foo
one/two/three/directory_foo"
one/two/three/directory_foo",
);
}