We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32dbc21 commit f20aef7Copy full SHA for f20aef7
tests/unit/server_tests/test_evaluation_plane_handler.py
@@ -287,6 +287,7 @@ def test_creds_no_auth_fails(self):
287
)
288
self.assertEqual(406, response.code)
289
290
+
291
class TestEvaluationPlaneHandlerDisabledWithoutAuth(AsyncHTTPTestCase):
292
@classmethod
293
def setUpClass(cls):
@@ -324,6 +325,7 @@ def test_evaluation_disabled_fails(self):
324
325
326
self.assertEqual(404, response.code)
327
328
329
class TestEvaluationPlaneHandlerDisabledWithAuth(AsyncHTTPTestCase):
330
331
@@ -402,7 +404,7 @@ def test_evaluation_disabled_fails_with_invalid_creds(self):
402
404
},
403
405
406
self.assertEqual(401, response.code)
-
407
408
def test_evaluation_disabled_fails_with_valid_creds(self):
409
response = self.fetch(
410
"/evaluate",
0 commit comments