We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d3a1c7 commit eb053a5Copy full SHA for eb053a5
backend/tests/apps/github/api/internal/nodes/user_test.py
@@ -38,7 +38,8 @@ def test_meta_configuration(self):
38
"updated_at",
39
"url",
40
}
41
- assert expected_field_names.issubset(field_names)
+ missing = expected_field_names - field_names
42
+ assert not missing, f"Missing fields on UserNode: {sorted(missing)}"
43
44
def test_created_at_field(self):
45
"""Test created_at field resolution."""
0 commit comments