Skip to content

Commit

Permalink
Fixed import
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Nov 22, 2024
1 parent d64bf31 commit 9dd81a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tests/deployment/test_scripts_deployer_cli.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from click.testing import CliRunner

from exasol.analytics import deploy
from exasol.analytics.query_handler.deployment import deploy
from exasol.analytics.query_handler.deployment.slc import LANGUAGE_ALIAS
from tests.utils.db_queries import DBQueries

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def get(self) -> Any:


class TestProcessParameter(ABC):
__test__ = False
def __init__(self, seed: int):
self.seed = seed

Expand Down Expand Up @@ -75,6 +76,7 @@ def __init__(


class TestProcess(Generic[T]):
__test__ = False
def __init__(self, parameter: T, run: Callable[[T, BidirectionalQueue], None]):
self.parameter = parameter
put_queue = multiprocessing.Queue()
Expand Down

0 comments on commit 9dd81a4

Please sign in to comment.