aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVikraman Choudhury <vikraman.choudhury@gmail.com>2011-06-30 21:16:05 +0530
committerVikraman Choudhury <vikraman.choudhury@gmail.com>2011-06-30 21:16:05 +0530
commit64a9ddde92b5140215fe72ff1b28c2daa5b5bd6a (patch)
treeacc6f4f9eb1bfa5c7dccecc659b97f91a634163c
parentcall app.py from separate wsgi handler (diff)
downloadgentoostats-64a9ddde92b5140215fe72ff1b28c2daa5b5bd6a.tar.gz
gentoostats-64a9ddde92b5140215fe72ff1b28c2daa5b5bd6a.tar.bz2
gentoostats-64a9ddde92b5140215fe72ff1b28c2daa5b5bd6a.zip
update module name to app in tests
-rw-r--r--server/tests/test_host.py2
-rw-r--r--server/tests/test_index.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/server/tests/test_host.py b/server/tests/test_host.py
index b5b6ebe..68a6732 100644
--- a/server/tests/test_host.py
+++ b/server/tests/test_host.py
@@ -2,7 +2,7 @@
import uuid
import json
import unittest
-from main import app
+from app import app
class TestHost(unittest.TestCase):
diff --git a/server/tests/test_index.py b/server/tests/test_index.py
index 63614ab..45de92b 100644
--- a/server/tests/test_index.py
+++ b/server/tests/test_index.py
@@ -1,6 +1,6 @@
import unittest
-from main import app
+from app import app
class TestIndex(unittest.TestCase):