Skip to content

Commit abaa827

Browse files
committed
Fixes tests with missing black formatting.
1 parent fdbb8eb commit abaa827

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

tests/integration/integration_tests_utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
import json
1111
from logging_util import create_test_logger
1212

13-
_logger = create_test_logger(__name__, log_file_path = os.getenv("MWI_INTEG_TESTS_LOG_FILE_PATH"))
13+
_logger = create_test_logger(
14+
__name__, log_file_path=os.getenv("MWI_INTEG_TESTS_LOG_FILE_PATH")
15+
)
1416

1517

1618
def perform_basic_checks():

tests/integration/integration_tests_with_license/conftest.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
from matlab_proxy.util.mwi import environment_variables as mwi_env
1010
from logging_util import create_test_logger
1111

12-
_logger = create_test_logger(__name__, log_file_path = os.getenv("MWI_INTEG_TESTS_LOG_FILE_PATH"))
12+
_logger = create_test_logger(
13+
__name__, log_file_path=os.getenv("MWI_INTEG_TESTS_LOG_FILE_PATH")
14+
)
1315

1416

1517
@pytest.fixture(scope="module", name="module_monkeypatch")

tests/integration/integration_tests_with_license/test_http_end_points.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
from urllib.parse import urlparse
1414
from logging_util import create_test_logger
1515

16-
_logger = create_test_logger(__name__, log_file_path = os.getenv("MWI_INTEG_TESTS_LOG_FILE_PATH"))
16+
_logger = create_test_logger(
17+
__name__, log_file_path=os.getenv("MWI_INTEG_TESTS_LOG_FILE_PATH")
18+
)
1719

1820
# Timeout for polling the matlab-proxy http endpoints
1921
# matlab proxy in Mac machines takes more time to be 'up'

tests/integration/integration_tests_without_license/conftest.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
from logging_util import create_test_logger
77
import os
88

9-
_logger = create_test_logger(__name__, log_file_path = os.getenv("MWI_INTEG_TESTS_LOG_FILE_PATH"))
9+
_logger = create_test_logger(
10+
__name__, log_file_path=os.getenv("MWI_INTEG_TESTS_LOG_FILE_PATH")
11+
)
1012

1113

1214
@pytest.fixture(scope="module", name="module_monkeypatch")

0 commit comments

Comments
 (0)