Skip to content

Commit

Permalink
Fix quotation in split_part test
Browse files Browse the repository at this point in the history
  • Loading branch information
3fonov committed Aug 23, 2024
1 parent 5d119a4 commit efec997
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/integration/adapter/utils/test_split_part.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,23 @@
)
select
{{ split_part('parts', '|', 1) }} as actual,
{{ split_part('parts', "'|'", 1) }} as actual,
result_1 as expected
from data
union all
select
{{ split_part('parts', '|', 2) }} as actual,
{{ split_part('parts', "'|'", 2) }} as actual,
result_2 as expected
from data
union all
select
{{ split_part('parts', '|', 3) }} as actual,
{{ split_part('parts', "'|'", 3) }} as actual,
result_3 as expected
from data
Expand Down

0 comments on commit efec997

Please sign in to comment.