Skip to content

Commit

Permalink
replace string literal with int literal
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorrit Sandbrink committed May 2, 2024
1 parent b0d2abb commit f63ceff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/pg_replication/test_pg_replication.py
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ def test_table_schema_change(
{"c1": 5, "c2": 1, "c3": 1, "c4": 1},
]
assert_loaded_data(
dest_pl, "items", ["c1", "c2", "c3", "c4"], exp, "c1", "c1 IN ('4', '5')"
dest_pl, "items", ["c1", "c2", "c3", "c4"], exp, "c1", "c1 IN (4, 5)"
)


Expand Down

0 comments on commit f63ceff

Please sign in to comment.