aboutsummaryrefslogtreecommitdiff
path: root/tests/unit
diff options
context:
space:
mode:
authorBonfaceKilz2021-05-26 12:05:08 +0300
committerzsloan2021-06-18 22:08:04 +0000
commit93ab68fe650eed0bb53d77225f47f72e527e48c4 (patch)
treed428046d95e52b2b331eb1d8bba8338e5c589d20 /tests/unit
parent57a1194a12fe1a8565d8abd6b833da57f12898b4 (diff)
downloadgenenetwork3-93ab68fe650eed0bb53d77225f47f72e527e48c4.tar.gz
Move the methods, "update" and "fetch", to gn3.db
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/db/test_phenotypes.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/db/test_phenotypes.py b/tests/unit/db/test_phenotypes.py
index 9fed524..505714a 100644
--- a/tests/unit/db/test_phenotypes.py
+++ b/tests/unit/db/test_phenotypes.py
@@ -2,9 +2,9 @@
from unittest import TestCase
from unittest import mock
-from gn3.db.phenotypes import fetchone
+from gn3.db import fetchone
+from gn3.db import update
from gn3.db.phenotypes import Phenotype
-from gn3.db.phenotypes import update
class TestPhenotypes(TestCase):