Adding release notes and enabling import order check
[osm/common.git] / osm_common / tests / test_dbbase.py
index 117350e..eabf5e0 100644 (file)
 ##
 
 import http
-import pytest
+from http import HTTPStatus
+from os import urandom
 import unittest
+
 from osm_common.dbbase import DbBase, DbException, deep_update
-from os import urandom
-from http import HTTPStatus
+import pytest
 
 
 def exception_message(message):
@@ -124,10 +125,6 @@ class TestEncryption(unittest.TestCase):
         TEST = (
             ("plain text 1 ! ", None),
             ("plain text 2 with salt ! ", "1afd5d1a-4a7e-4d9c-8c65-251290183106"),
-            ("plain text 3 with usalt ! ", u"1afd5d1a-4a7e-4d9c-8c65-251290183106"),
-            (u"plain unicode 4 ! ", None),
-            (u"plain unicode 5 with salt ! ", "1a000d1a-4a7e-4d9c-8c65-251290183106"),
-            (u"plain unicode 6 with usalt ! ", u"1abcdd1a-4a7e-4d9c-8c65-251290183106"),
         )
         for db_base in self.db_bases:
             for value, salt in TEST: