Commit ae8fb075 authored by Alp Deniz Ogut's avatar Alp Deniz Ogut
Browse files

Fix fmt

parent ded34b93
Pipeline #7575 passed with stage
in 15 minutes and 1 second
Showing with 5 additions and 1 deletion
+5 -1
......@@ -813,7 +813,11 @@ mod tests {
.filter(|x| !x.as_array().unwrap().is_empty());
// print!("{:}", serde_json::to_string_pretty(&json!(data)).unwrap());
assert_eq!(items_with_friends.clone().count(), 100, "Expected 100 friends");
assert_eq!(
items_with_friends.clone().count(),
100,
"Expected 100 friends"
);
// check if 1st level prop is fetched
let age: i32 = serde_json::from_value(data[0]["age"].clone()).unwrap_or(0);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment