Skip to content

Instantly share code, notes, and snippets.

@notmyname
Created December 2, 2016 23:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save notmyname/8933e9e7f9e53c991f122317476f3d37 to your computer and use it in GitHub Desktop.
Save notmyname/8933e9e7f9e53c991f122317476f3d37 to your computer and use it in GitHub Desktop.
diff --git a/test/unit/proxy/controllers/test_container.py b/test/unit/proxy/controllers/test_container.py
index 66bd0220..1cc0d198 100644
--- a/test/unit/proxy/controllers/test_container.py
+++ b/test/unit/proxy/controllers/test_container.py
@@ -236,6 +236,8 @@ class TestContainerController(TestRingBase):
([Timeout()] * nodes + [404] * handoffs, 404),
([Timeout()] * (nodes + handoffs), 503),
([Timeout()] * (nodes + handoffs - 1) + [404], 404),
+ ([503, 200], 200),
+ ([507, 200], 200),
]
failures = []
for case, expected in GET_TEST_CASES:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment