test add
diff --git a/web_app/__init__.py b/web_app/__init__.py
index fe42ff8..4bd9921 100644
--- a/web_app/__init__.py
+++ b/web_app/__init__.py
@@ -152,7 +152,9 @@
     tests = json.loads(request.data)
 
     if not hasattr(g, "storage"):
-        g.storage = create_storage("file://" + TEST_PATH + '/' + test_name + ".json", "", "")
+        path = "file://" + TEST_PATH + '/' + test_name + ".json"
+        print path
+        g.storage = create_storage(path, "", "")
 
     for test in tests:
         g.storage.store(test)