summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@gnome.org>2023-04-21 17:43:12 -0600
committerFederico Mena Quintero <federico@gnome.org>2023-04-21 17:43:12 -0600
commit53491378fcdeb00bbe166f8775bf96fb7f518de3 (patch)
treed7af1b04e919a49d62ea08da1d910347b12b2f94
parent76da3cde879a433ce1c69b8a84bb33d22f21d838 (diff)
downloadlibrsvg-53491378fcdeb00bbe166f8775bf96fb7f518de3.tar.gz
cargo fmt
Part-of: <https://gitlab.gnome.org/GNOME/librsvg/-/merge_requests/822>
-rw-r--r--rsvg-convert/tests/rsvg_convert.rs9
1 files changed, 3 insertions, 6 deletions
diff --git a/rsvg-convert/tests/rsvg_convert.rs b/rsvg-convert/tests/rsvg_convert.rs
index 7549998d..f58edf6c 100644
--- a/rsvg-convert/tests/rsvg_convert.rs
+++ b/rsvg-convert/tests/rsvg_convert.rs
@@ -914,9 +914,8 @@ fn export_id_with_zero_stroke_width() {
.assert()
.success()
.stdout(
- file::is_png().with_contents(
- "tests/fixtures/bug601-zero-stroke-width-render-only-foo.png",
- ),
+ file::is_png()
+ .with_contents("tests/fixtures/bug601-zero-stroke-width-render-only-foo.png"),
);
}
@@ -1026,9 +1025,7 @@ fn accept_language_fallback() {
.arg("--accept-language=fr")
.assert()
.success()
- .stdout(
- file::is_png().with_contents("tests/fixtures/accept-language-fallback.png"),
- );
+ .stdout(file::is_png().with_contents("tests/fixtures/accept-language-fallback.png"));
}
#[test]