From 216e7de7b0401db59e470253726f86b0f380323a Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Sun, 4 Jul 2021 22:40:34 +0200 Subject: Fix tests an update for newer rust. --- tests/zotapi.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests') diff --git a/tests/zotapi.rs b/tests/zotapi.rs index ba279a4..af1d524 100644 --- a/tests/zotapi.rs +++ b/tests/zotapi.rs @@ -81,8 +81,8 @@ fn create_new_post() { fn create_new_post_with_title() { let m = mock_with_authorization("POST", "/api/z/1.0/item/update") .match_body(Matcher::AllOf(vec![ - Matcher::UrlEncoded("title".to_string(), "A+title".to_string()), - Matcher::UrlEncoded("body".to_string(), "This+is+a+test".to_string()), + Matcher::UrlEncoded("title".to_string(), "A title".to_string()), + Matcher::UrlEncoded("body".to_string(), "This is a test".to_string()), ])) .with_status(200) .with_header("content-type", "application/json") @@ -360,7 +360,7 @@ fn fetch_members_of_group_by_group_name() { let m = mock_with_authorization("GET", "/api/z/1.0/group_members") .match_query(Matcher::UrlEncoded( "group_name".into(), - "Friends+of+pain".into(), + "Friends of pain".into(), )) .with_status(200) .with_header("content-type", "application/json") -- cgit v1.2.3