aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMartin Czygan <martin.czygan@gmail.com>2020-11-24 23:53:21 +0100
committerMartin Czygan <martin.czygan@gmail.com>2020-11-24 23:53:21 +0100
commit75a740a58e4cf5b8480261f0c2795960f66da4a9 (patch)
tree8694e65eca5c4d1d61cc60925709ddefb1f86d38 /tests
parent268e7948e6fa2ee9871430104f60bdab3212464c (diff)
downloadfuzzycat-75a740a58e4cf5b8480261f0c2795960f66da4a9.tar.gz
fuzzycat-75a740a58e4cf5b8480261f0c2795960f66da4a9.zip
fix imports
Diffstat (limited to 'tests')
-rw-r--r--tests/test_cluster.py9
-rw-r--r--tests/test_verify.py5
2 files changed, 9 insertions, 5 deletions
diff --git a/tests/test_cluster.py b/tests/test_cluster.py
index f673206..f2ae4a4 100644
--- a/tests/test_cluster.py
+++ b/tests/test_cluster.py
@@ -1,8 +1,11 @@
-import pytest
import collections
-import tempfile
-from fuzzycat.cluster import release_key_title, release_key_title_normalized, release_key_title_nysiis
import os
+import tempfile
+
+import pytest
+
+from fuzzycat.cluster import (release_key_title, release_key_title_normalized,
+ release_key_title_nysiis)
Case = collections.namedtuple("Case", 'input output')
diff --git a/tests/test_verify.py b/tests/test_verify.py
index 889094f..77eecea 100644
--- a/tests/test_verify.py
+++ b/tests/test_verify.py
@@ -1,7 +1,8 @@
+import csv
import json
import os
-import csv
-from fuzzycat.verify import compare, Status
+
+from fuzzycat.verify import Status, compare
VERIFY_CSV = os.path.join(os.path.dirname(os.path.realpath(__file__)), "data/verify.csv")
RELEASE_ENTITIES_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), "data/release")