mirror of
https://github.com/helix-editor/helix.git
synced 2025-01-19 21:47:07 +04:00
Fix tests again
This commit is contained in:
parent
24f03097e3
commit
425de09d21
@ -310,7 +310,7 @@ fn method_call_serialize() {
|
||||
id: Id::Num(1),
|
||||
};
|
||||
|
||||
let serialized = serde_json::json!(&m);
|
||||
let serialized = serde_json::to_string(&m).unwrap();
|
||||
assert_eq!(
|
||||
serialized,
|
||||
r#"{"jsonrpc":"2.0","method":"update","params":[1,2],"id":1}"#
|
||||
@ -327,7 +327,7 @@ fn notification_serialize() {
|
||||
params: Params::Array(vec![Value::from(1), Value::from(2)]),
|
||||
};
|
||||
|
||||
let serialized = serde_json::json!(&n);
|
||||
let serialized = serde_json::to_string(&n).unwrap();
|
||||
assert_eq!(
|
||||
serialized,
|
||||
r#"{"jsonrpc":"2.0","method":"update","params":[1,2]}"#
|
||||
|
Loading…
Reference in New Issue
Block a user