aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBonfaceKilz2020-07-25 00:59:46 +0300
committerBonfaceKilz2020-07-25 00:59:46 +0300
commit5eb26c5a209f3a3c54cf6fe623e5372188bdd1bc (patch)
treeb6f02d50e0158f47ecd76d40d68e7301b01bb7f6
parentea8782da5c43e695ba11ff348aeb45b24db07010 (diff)
downloadgenenetwork2-5eb26c5a209f3a3c54cf6fe623e5372188bdd1bc.tar.gz
Update import statement in test_general_object.py
* test/unittest/base/test_general_object.py: replace the import statement to use the module path instead of the path referenced from PYTHONPATH
-rw-r--r--test/unittest/base/test_general_object.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unittest/base/test_general_object.py b/test/unittest/base/test_general_object.py
index eaefdec9..699cb079 100644
--- a/test/unittest/base/test_general_object.py
+++ b/test/unittest/base/test_general_object.py
@@ -1,6 +1,6 @@
import unittest
-from wqflask.base.GeneralObject import GeneralObject
+from base.GeneralObject import GeneralObject
class TestGeneralObjectTests(unittest.TestCase):