diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/zotapi.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/zotapi.rs b/tests/zotapi.rs index 9dbf5cf..b5c1652 100644 --- a/tests/zotapi.rs +++ b/tests/zotapi.rs @@ -266,7 +266,7 @@ fn fetch_abconfig() { .with_body(&data) .create(); - let res = zotapi::abconfig::fetch(&client()).unwrap(); + let res = zotapi::ABConfig::z().fetch(&client()).unwrap(); m.assert(); assert_eq!(res.len(), 2); @@ -282,7 +282,7 @@ fn fetch_abconfig_for_specific_contact() { .with_body("[]") .create(); - zotapi::abconfig::with_abook_id(42).fetch(&client()).unwrap(); + zotapi::ABConfig::z().with_abook_id(42).fetch(&client()).unwrap(); m.assert(); } |