From 98873626b8c76058c7a5ddd05981fe2a1c00757b Mon Sep 17 00:00:00 2001 From: dkim19375 <65050767+dkim19375@users.noreply.github.com> Date: Sun, 15 Oct 2023 01:52:47 -0400 Subject: [PATCH] Cargo fmt --- src/internal/request/paths.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/internal/request/paths.rs b/src/internal/request/paths.rs index a166fd3..8a6a2e4 100644 --- a/src/internal/request/paths.rs +++ b/src/internal/request/paths.rs @@ -118,13 +118,17 @@ mod tests { } #[test] - #[should_panic(expected = "Cannot have a path with a parameter key right after another parameter key (parameter value required)")] + #[should_panic( + expected = "Cannot have a path with a parameter key right after another parameter key (parameter value required)" + )] fn invalid_path_with_skipped_param_value() { create_path(&["/test", "test2=", "test3="]); } #[test] - #[should_panic(expected = "Cannot have a path with a parameter key at the end of the path (parameter value required)")] + #[should_panic( + expected = "Cannot have a path with a parameter key at the end of the path (parameter value required)" + )] fn invalid_path_with_no_param_value() { create_path(&["/test", "test2="]); }