Improve test

This commit is contained in:
harupy 2023-01-15 16:53:13 +09:00
parent 393869c47c
commit d5fc7c4c87
2 changed files with 45 additions and 5 deletions

View file

@ -312,7 +312,7 @@ with (0 as a, 1 as b,): pass
#[test]
fn test_dict_containing_spread() {
let parse_ast = parse_expression(r#"{"k": "v", **d}"#, "<test>").unwrap();
let parse_ast = parse_expression(r#"{"a": "b", **c, "d": "e"}"#, "<test>").unwrap();
insta::assert_debug_snapshot!(parse_ast);
}
}