From 78c8c326ce1a4f2f3a6334bff4ff7a22824327fb Mon Sep 17 00:00:00 2001 From: Andy Pack Date: Thu, 10 Oct 2024 23:51:25 +0100 Subject: [PATCH] fixing test --- tests/test_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_api.py b/tests/test_api.py index 1d8761e..5c73211 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -34,7 +34,7 @@ class TestAPI(unittest.TestCase): with self.test_app.session_transaction() as sess: sess['username'] = 'test' response = self.test_app.get('/app') - self.assertTrue(199 < response.status_code <= 299) + self.assertTrue(199 < response.status_code <= 399) ### PLAYLISTS ###