aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBonfaceKilz2021-05-26 12:05:08 +0300
committerBonfaceKilz2021-05-26 12:13:00 +0300
commitcd08b40a4c646ec4acc242f9ea93037e7df9966b (patch)
treed76cc37dc8c448d352a57d881df340c09563520a /tests
parent24732c07fb63091ec944e87df8645731d7c90bb4 (diff)
downloadgenenetwork3-cd08b40a4c646ec4acc242f9ea93037e7df9966b.tar.gz
Move the methods, "update" and "fetch", to gn3.db
Diffstat (limited to 'tests')
-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):