Skip to content

Commit

Permalink
Remove encoding args from Oracle connection
Browse files Browse the repository at this point in the history
python-oracledb does not support them, and uses utf-8 for everything.
  • Loading branch information
volcan01010 committed May 17, 2024
1 parent 981a22a commit df4c191
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/integration/db/test_oracle.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,8 +348,7 @@ def test_lob_io(testdb_conn, test_blob_table, fetch_lobs):
@pytest.fixture(scope='function')
def testdb_conn():
"""Get connection to test Oracle database."""
with connect(ORADB, 'TEST_ORACLE_PASSWORD', encoding="UTF-8",
nencoding="UTF-8") as conn:
with connect(ORADB, 'TEST_ORACLE_PASSWORD') as conn:
yield conn


Expand Down

0 comments on commit df4c191

Please sign in to comment.