one more
diff --git a/web_app/__init__.py b/web_app/__init__.py
index 8a49095..dffc1a1 100644
--- a/web_app/__init__.py
+++ b/web_app/__init__.py
@@ -21,11 +21,11 @@
 def load_test(test_name):
     test_name += '.json'
 
-    with open("../" + test_name, 'rt') as f:
+    with open(TEST_PATH + "/" + test_name, 'rt') as f:
         raw = f.read()
 
         if raw == '':
-            raise Exception("Test is emoty")
+            raise Exception("Test is empty")
 
         test = json.loads(raw)