Skip to content

Commit be511b3

Browse files
committed
fix: remove thick_mode from schema_as_service_name test to avoid CI Oracle client dependency
1 parent fc86a36 commit be511b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

providers/oracle/tests/unit/oracle/hooks/test_oracle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def test_get_conn_expire_time(self, mock_connect):
145145
def test_get_conn_schema_as_service_name(self, mock_connect):
146146
"""When service_name and sid are not in extras, conn.schema should be used as service_name."""
147147
self.connection.schema = "MY_SERVICE"
148-
self.connection.extra = json.dumps({"thick_mode": True, "thick_mode_lib_dir": "/opt/oracle/lib"})
148+
self.connection.extra = json.dumps({})
149149
self.db_hook.get_conn()
150150
assert mock_connect.call_count == 1
151151
args, kwargs = mock_connect.call_args

0 commit comments

Comments
 (0)