fixing test
All checks were successful
test and deploy / Build & Unit Test (push) Successful in 1m56s
test and deploy / Package & Push Container (push) Successful in 7m4s

This commit is contained in:
Andy Pack 2024-10-10 23:51:25 +01:00
parent 03e9743abb
commit 78c8c326ce
Signed by: sarsoo
GPG Key ID: A55BA3536A5E0ED7

View File

@ -34,7 +34,7 @@ class TestAPI(unittest.TestCase):
with self.test_app.session_transaction() as sess: with self.test_app.session_transaction() as sess:
sess['username'] = 'test' sess['username'] = 'test'
response = self.test_app.get('/app') response = self.test_app.get('/app')
self.assertTrue(199 < response.status_code <= 299) self.assertTrue(199 < response.status_code <= 399)
### PLAYLISTS ### ### PLAYLISTS ###