diff --git a/tests/test_api.py b/tests/test_api.py
index 778c378f725c094e9472df0d76f6104bc9166975..e8e110563306633db6d3560a6bde2b0c389609bb 100644
--- a/tests/test_api.py
+++ b/tests/test_api.py
@@ -14,7 +14,7 @@ class TestServerBaseClass(unittest.TestCase):
 
         self.server_process = Process(
             target=uvicorn.run,
-            args=('api:app', ),
+            args=('model_server.api:app', ),
             kwargs={'host': host, 'port': port, 'log_level': 'debug'},
             daemon=True
         )