File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ def test_compare_from_schema_string_sdl():
1515
1616 expected_changes = {
1717 'Argument `arg: Int` added to `CType.a`' ,
18- "Default value for argument `anotherArg` on `@yolo` directive changed from `<INVALID> ` to `'Test'`" ,
19- 'Default value for argument `arg` on field `CType.d` changed from `<INVALID> ` to `10`' ,
18+ "Default value for argument `anotherArg` on `@yolo` directive changed from `Undefined ` to `'Test'`" ,
19+ 'Default value for argument `arg` on field `CType.d` changed from `Undefined ` to `10`' ,
2020 'Default value for argument `arg` on field `WithArguments.b` changed from `1` to `2`' ,
2121 "Default value for input field `AInput.a` changed from `'1'` to `1`" ,
2222 'Deprecation reason for enum value `F` changed from `Old` to `New`' ,
@@ -58,4 +58,4 @@ def test_compare_from_schema_string_sdl():
5858 }
5959 messages = [change .message for change in diff ]
6060 for message in messages :
61- assert message in expected_changes
61+ assert message in expected_changes , f" { message } not found on expected messages"
You can’t perform that action at this time.
0 commit comments