Skip to content

Commit

Permalink
Bugfix in test.
Browse files Browse the repository at this point in the history
  • Loading branch information
scnerd committed Sep 3, 2024
1 parent 8512c96 commit 3a677f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def test_convert_to_pyspark():

spl_code = r"code IN(4*, 5*)"
expected_pyspark_code = format_str(
r"spark.table('main').where((F.col('code').like('4%') | F.col('code').like('5%')))",
r"spark.table('main').where((F.col('code').like('4%') | F.col('code').like('5%')),)",
mode=FileMode(),
).strip()

Expand Down

0 comments on commit 3a677f5

Please sign in to comment.