Skip to content

Commit 22224c9

Browse files
committed
#1326: Fixed Python Tests
1 parent fab47b1 commit 22224c9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test_container/tests/test/standard-flavor/all/python/connect_to_exasol_with_websocket_api.py

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

77
class WebsocketAPIConnectionTest(udf.TestCase):
88
# TODO use dsn and credentials injected into the testcase
9-
db_port = obj_from_json_file("/environment_info.json").database_info.ports.database
9+
db_port = obj_from_json_file("/environment_info.json").database_info.ports._database
1010
connection = f"localhost:{db_port}"
1111
user = "sys"
1212
pwd = "exasol"

test_container/tests/test/standard-flavor/all/python/pyexasol.py

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

77
class PyexsolConnectionTest(udf.TestCase):
88
# TODO use dsn and credentials injected into the testcase
9-
db_port = obj_from_json_file("/environment_info.json").database_info.ports.database
9+
db_port = obj_from_json_file("/environment_info.json").database_info.ports._database
1010
host = "localhost"
1111
port = str(db_port)
1212
user = "sys"

test_container/tests/test/standard-flavor/all/python/row_level_security_with_websocket_api.py

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

77

88
class WebsocketAPIConnectionTest(udf.TestCase):
9-
db_port = obj_from_json_file("/environment_info.json").database_info.ports.database
9+
db_port = obj_from_json_file("/environment_info.json").database_info.ports._database
1010
connection = f"localhost:{db_port}"
1111
user = "sys"
1212
pwd = "exasol"

0 commit comments

Comments
 (0)