Update tests.py

This commit is contained in:
tcely 2025-06-15 14:24:00 -04:00 committed by GitHub
parent 2422d9e56c
commit a9701c5a5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -212,7 +212,7 @@ class FrontEndTestCase(TestCase):
args=(source_uuid,))[0] args=(source_uuid,))[0]
self.assertEqual(task.queue, Val(TaskQueue.NET)) self.assertEqual(task.queue, Val(TaskQueue.NET))
# Run the check_source_directory_exists task # Run the check_source_directory_exists task
check_source_directory_exists.now(source_uuid) check_source_directory_exists.call_local(source_uuid)
# Check the source is now on the source overview page # Check the source is now on the source overview page
response = c.get('/sources') response = c.get('/sources')
self.assertEqual(response.status_code, 200) self.assertEqual(response.status_code, 200)