diff options
Diffstat (limited to 'tests/zotapi.rs')
-rw-r--r-- | tests/zotapi.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/zotapi.rs b/tests/zotapi.rs index e22ba30..1621af1 100644 --- a/tests/zotapi.rs +++ b/tests/zotapi.rs @@ -74,9 +74,7 @@ fn create_new_post() { .with_body("{}") .create(); - let _res = zotapi::item() - .body("This is a test") - .create(&client()); + let _res = zotapi::item().body("This is a test").create(&client()); m.assert(); } |