From 9fc995b5e1c03be5a17c58e5e20f843ac7f220cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dean=20Qui=C3=B1anola?= Date: Wed, 8 Apr 2026 16:34:50 -0700 Subject: [PATCH] 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. --- tests/test_api/test_mutation_endpoints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_api/test_mutation_endpoints.py b/tests/test_api/test_mutation_endpoints.py index f4d058b3..0def4f30 100644 --- a/tests/test_api/test_mutation_endpoints.py +++ b/tests/test_api/test_mutation_endpoints.py @@ -42,4 +42,4 @@ def test_all_fields(self): self.assertIn("scalerValue: 5", result) self.assertIn("workersMin: 2", result) self.assertIn("workersMax: 4", result) - self.assertIn('flashBootType: "FLASHBOOT"', result) + self.assertIn("flashBootType: FLASHBOOT", result)