aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2021-07-04 22:40:34 +0200
committerHarald Eilertsen <haraldei@anduin.net>2021-07-04 22:40:34 +0200
commit216e7de7b0401db59e470253726f86b0f380323a (patch)
treed53b235de26ad97299febf4a355e46aa678220d4
parentd782334d31e2925432677d1e05d000f350aa925d (diff)
downloadrust-zotapi-216e7de7b0401db59e470253726f86b0f380323a.tar.gz
rust-zotapi-216e7de7b0401db59e470253726f86b0f380323a.tar.bz2
rust-zotapi-216e7de7b0401db59e470253726f86b0f380323a.zip
Fix tests an update for newer rust.
-rw-r--r--src/item.rs2
-rw-r--r--tests/zotapi.rs6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/item.rs b/src/item.rs
index 361b327..7c5935d 100644
--- a/src/item.rs
+++ b/src/item.rs
@@ -165,7 +165,7 @@ fn add_group_to_list_of_groups_allowed() {
item.group_allow("test");
match item.data.get("groups_allow") {
Some(ItemData::List(v)) => assert_eq!(v.len(), 1),
- Some(ItemData::Value(s)) => assert!(false, format!("Expected a list, found value: {}", s)),
+ Some(ItemData::Value(s)) => assert!(false, "Expected a list, found value: {}", s),
None => assert!(false, "List not found!"),
};
}
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")