Fixes common test imports

This commit is contained in:
Sergi Delgado Segura
2020-02-17 13:06:19 +01:00
parent f55fe17f36
commit 3ee8d9f2cb
3 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ from pytest import fixture
from common.appointment import Appointment
from common.encrypted_blob import EncryptedBlob
from test.pisa.unit.conftest import get_random_value_hex
from test.common.unit.conftest import get_random_value_hex
from common.constants import LOCATOR_LEN_BYTES

View File

@@ -1,7 +1,7 @@
from binascii import unhexlify
from common.blob import Blob
from test.pisa.unit.conftest import get_random_value_hex
from test.common.unit.conftest import get_random_value_hex
def test_init_blob():

View File

@@ -1,5 +1,5 @@
from common.encrypted_blob import EncryptedBlob
from test.pisa.unit.conftest import get_random_value_hex
from test.common.unit.conftest import get_random_value_hex
def test_init_encrypted_blob():