From 8118d5d2927505b6b1223bf1aa87f12667d93a93 Mon Sep 17 00:00:00 2001 From: Mikhail Beck Date: Tue, 14 Nov 2023 08:31:07 +0000 Subject: [PATCH] Update test/unit/test_connections.py Co-authored-by: Christoph Kuhnke --- test/unit/test_connections.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/test_connections.py b/test/unit/test_connections.py index 726f29b..2f813a6 100644 --- a/test/unit/test_connections.py +++ b/test/unit/test_connections.py @@ -131,6 +131,6 @@ def test_open_sqlalchemy_connection_ssl(mock_create_engine, conf): def test_open_bucketfs_connection(mock_bfs_service, conf): open_bucketfs_connection(conf) mock_bfs_service.assert_called_once_with( - "http://24.134.96.2:6666", + f"http://{conf.EXTERNAL_HOST_NAME}:{conf.BUCKETFS_PORT}", {"my_bucket": {"username": "buck_user", "password": "buck_pwd"}}, )