Skip to content

Commit

Permalink
fixed styling:
Browse files Browse the repository at this point in the history
  • Loading branch information
hxi1 committed Jan 19, 2022
1 parent 32dbc21 commit f20aef7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/unit/server_tests/test_evaluation_plane_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,7 @@ def test_creds_no_auth_fails(self):
)
self.assertEqual(406, response.code)


class TestEvaluationPlaneHandlerDisabledWithoutAuth(AsyncHTTPTestCase):
@classmethod
def setUpClass(cls):
Expand Down Expand Up @@ -324,6 +325,7 @@ def test_evaluation_disabled_fails(self):
)
self.assertEqual(404, response.code)


class TestEvaluationPlaneHandlerDisabledWithAuth(AsyncHTTPTestCase):
@classmethod
def setUpClass(cls):
Expand Down Expand Up @@ -402,7 +404,7 @@ def test_evaluation_disabled_fails_with_invalid_creds(self):
},
)
self.assertEqual(401, response.code)

def test_evaluation_disabled_fails_with_valid_creds(self):
response = self.fetch(
"/evaluate",
Expand Down

0 comments on commit f20aef7

Please sign in to comment.