Skip to content

Commit 9fc995b

Browse files
committed
fix(test): update flashBootType assertion to match enum value
The FLASHBOOT enum PR (#488) removed quotes from the GraphQL enum value but didn't update the test assertion to match.
1 parent 5bfa679 commit 9fc995b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_api/test_mutation_endpoints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ def test_all_fields(self):
4242
self.assertIn("scalerValue: 5", result)
4343
self.assertIn("workersMin: 2", result)
4444
self.assertIn("workersMax: 4", result)
45-
self.assertIn('flashBootType: "FLASHBOOT"', result)
45+
self.assertIn("flashBootType: FLASHBOOT", result)

0 commit comments

Comments
 (0)