Skip to content

Commit 61703b6

Browse files
author
nambrosini
committed
🔧 Change message to match graphql-core==3.1.4 version
1 parent e339ef8 commit 61703b6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_schema_integration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)