Skip to content

Commit 476d15b

Browse files
author
Ilyas Gasanov
committed
[DOP-19901] Add integration MSSQL tests & CI
1 parent 51591b9 commit 476d15b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_integration/test_run_transfer/test_mssql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ async def test_run_transfer_postgres_to_mssql_mixed_naming(
171171
df = reader.run()
172172

173173
assert df.columns != init_df_with_mixed_column_naming.columns
174-
assert df.columns == [column.upper() for column in init_df_with_mixed_column_naming.columns]
174+
assert df.columns == [column.lower() for column in init_df_with_mixed_column_naming.columns]
175175

176176
# as spark rounds datetime up to milliseconds while writing to mssql: https://onetl.readthedocs.io/en/latest/connection/db_connection/mssql/types.html#id5
177177
df = df.withColumn("Registered At", date_trunc("second", col("Registered At")))

0 commit comments

Comments
 (0)