diff --git a/tests/fixtures/test_fixture.py b/tests/fixtures/test_fixture.py index 962e9a6..3e785ee 100644 --- a/tests/fixtures/test_fixture.py +++ b/tests/fixtures/test_fixture.py @@ -5,7 +5,7 @@ class MyTestCase(TestCase): def test_long_running_task(self): # Simulate a long-running task - time.sleep(20) + time.sleep(5) # Add your actual test assertions here (if any) self.assertEqual(1 + 1, 2)