Skip to content

Commit 16a9b41

Browse files
authored
fix(test): update flashBootType assertion to match enum value (#491)
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 16a9b41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)