diff options
-rw-r--r-- | tests/zotapi.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/zotapi.rs b/tests/zotapi.rs index 91eecab..a405e35 100644 --- a/tests/zotapi.rs +++ b/tests/zotapi.rs @@ -27,7 +27,7 @@ fn default_mock(method: &str, url: &str) -> Mock { mock_with_authorization(method, url) .with_status(200) .with_header("content-type", "application/json") - .with_body("{}") + .with_body("[]") .create() } |