Skip to content

Commit f20aef7

Browse files
committed
fixed styling:
1 parent 32dbc21 commit f20aef7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/unit/server_tests/test_evaluation_plane_handler.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,7 @@ def test_creds_no_auth_fails(self):
287287
)
288288
self.assertEqual(406, response.code)
289289

290+
290291
class TestEvaluationPlaneHandlerDisabledWithoutAuth(AsyncHTTPTestCase):
291292
@classmethod
292293
def setUpClass(cls):
@@ -324,6 +325,7 @@ def test_evaluation_disabled_fails(self):
324325
)
325326
self.assertEqual(404, response.code)
326327

328+
327329
class TestEvaluationPlaneHandlerDisabledWithAuth(AsyncHTTPTestCase):
328330
@classmethod
329331
def setUpClass(cls):
@@ -402,7 +404,7 @@ def test_evaluation_disabled_fails_with_invalid_creds(self):
402404
},
403405
)
404406
self.assertEqual(401, response.code)
405-
407+
406408
def test_evaluation_disabled_fails_with_valid_creds(self):
407409
response = self.fetch(
408410
"/evaluate",

0 commit comments

Comments
 (0)