Skip to content

Commit 20fc8ff

Browse files
committed
Make imports consistent
1 parent 8f9aa4f commit 20fc8ff

File tree

94 files changed

+116
-116
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+116
-116
lines changed

tests/__init__.py

Whitespace-only changes.

tests/integ_tests/core/distributed_lock/test_distributed_lock.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from marqo.core.distributed_lock.zookeeper_distributed_lock import get_deployment_lock
77
from marqo.core.distributed_lock.zookeeper_distributed_lock import ZookeeperDistributedLock
88
from marqo.core.exceptions import BackendCommunicationError
9-
from integ_tests.marqo_test import MarqoTestCase
9+
from tests.integ_tests.marqo_test import MarqoTestCase
1010
from marqo.core.exceptions import ZookeeperLockNotAcquiredError
1111

1212

tests/integ_tests/core/document/test_documents_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from marqo.core.models.marqo_get_documents_by_id_response import (MarqoGetDocumentsByIdsResponse,
44
MarqoGetDocumentsByIdsItem)
55
from marqo.core.models.marqo_update_documents_response import MarqoUpdateDocumentsResponse, MarqoUpdateDocumentsItem
6-
from integ_tests.marqo_test import MarqoTestCase
6+
from tests.integ_tests.marqo_test import MarqoTestCase
77

88

99
class TestDocumentsCommon(MarqoTestCase):

tests/integ_tests/core/document/test_partial_document_update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import numpy as np
88

9-
from integ_tests.marqo_test import MarqoTestCase, TestImageUrls
9+
from tests.integ_tests.marqo_test import MarqoTestCase, TestImageUrls
1010
from marqo.api.exceptions import BadRequestError
1111
from marqo.api.models.update_documents import UpdateDocumentsBodyParams
1212
from marqo.core.models.add_docs_params import AddDocsParams

tests/integ_tests/core/document/test_partial_update_semi_structured.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from typing import Tuple
44

55
import pytest
6-
from integ_tests.marqo_test import MarqoTestCase
6+
from tests.integ_tests.marqo_test import MarqoTestCase
77

88
from marqo.api.exceptions import InvalidFieldNameError
99
from marqo.core.models.add_docs_params import AddDocsParams

tests/integ_tests/core/document/tests_remove_duplicate_documents.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from marqo.core.models.marqo_index import *
2-
from integ_tests.marqo_test import MarqoTestCase
2+
from tests.integ_tests.marqo_test import MarqoTestCase
33

44

55
class TestUpdate(MarqoTestCase):

tests/integ_tests/core/index_management/test_get_settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from marqo.core.models.marqo_index import *
77
from marqo.core.models.marqo_index_request import FieldRequest
88
from marqo.tensor_search.models.index_settings import IndexSettings
9-
from integ_tests.marqo_test import MarqoTestCase
9+
from tests.integ_tests.marqo_test import MarqoTestCase
1010

1111

1212
class TestGetSettings(MarqoTestCase):

tests/integ_tests/core/index_management/test_index_management.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
from marqo.s2_inference.s2_inference import get_model_properties_from_registry
3131
from marqo.vespa.exceptions import VespaActivationConflictError
3232
from marqo.vespa.models import VespaDocument
33-
from integ_tests.marqo_test import MarqoTestCase
33+
from tests.integ_tests.marqo_test import MarqoTestCase
3434

3535

3636
class TestIndexManagement(MarqoTestCase):

tests/integ_tests/core/index_management/test_index_setting_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from marqo.core.exceptions import OperationConflictError
77
from marqo.core.index_management.vespa_application_package import IndexSettingStore
88
from marqo.core.models.marqo_index import Field, FieldType, MarqoIndex, Model
9-
from integ_tests.marqo_test import MarqoTestCase
9+
from tests.integ_tests.marqo_test import MarqoTestCase
1010

1111

1212
@pytest.mark.unittest

tests/integ_tests/core/inference/test_private_model_loading.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from marqo.core.models.add_docs_params import AddDocsParams
77
from marqo.tensor_search.api import create_index
88
from marqo.tensor_search.models.index_settings import IndexSettings
9-
from integ_tests.marqo_test import MarqoTestCase, TestImageUrls
9+
from tests.integ_tests.marqo_test import MarqoTestCase, TestImageUrls
1010

1111

1212

0 commit comments

Comments
 (0)