Skip to content

Commit 513408d

Browse files
committed
fix async tests
1 parent d955ce1 commit 513408d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/async_tests/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def setup_background_callback_app(manager_name, app_name):
117117
raise RuntimeError(f"celery failed to start: {error}")
118118

119119
try:
120-
yield import_app(f"tests.integration.async_tests.{app_name}")
120+
yield import_app(f"tests.async_tests.{app_name}")
121121
finally:
122122
# Interval may run one more time after settling on final app state
123123
# Sleep for 1 interval of time
@@ -136,7 +136,7 @@ def setup_background_callback_app(manager_name, app_name):
136136
print(cache_directory)
137137
os.environ["DISKCACHE_DIR"] = cache_directory
138138
try:
139-
app = import_app(f"tests.integration.async_tests.{app_name}")
139+
app = import_app(f"tests.async_tests.{app_name}")
140140
yield app
141141
finally:
142142
# Interval may run one more time after settling on final app state

0 commit comments

Comments
 (0)