We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc86a36 commit be511b3Copy full SHA for be511b3
providers/oracle/tests/unit/oracle/hooks/test_oracle.py
@@ -145,7 +145,7 @@ def test_get_conn_expire_time(self, mock_connect):
145
def test_get_conn_schema_as_service_name(self, mock_connect):
146
"""When service_name and sid are not in extras, conn.schema should be used as service_name."""
147
self.connection.schema = "MY_SERVICE"
148
- self.connection.extra = json.dumps({"thick_mode": True, "thick_mode_lib_dir": "/opt/oracle/lib"})
+ self.connection.extra = json.dumps({})
149
self.db_hook.get_conn()
150
assert mock_connect.call_count == 1
151
args, kwargs = mock_connect.call_args
0 commit comments