Skip to content

Commit

Permalink
fix: reorder testcases
Browse files Browse the repository at this point in the history
  • Loading branch information
lemonadern committed Aug 22, 2024
1 parent a88a554 commit 966376a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions crates/uroborosql-fmt/testfiles/dst/select/unary.sql
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ select
select
|/25 as square_root
select
@-5 as absolute_value
|/25 as square_root
select
@-5 as absolute_value
select
|/25 as square_root
@-5 as absolute_value
select
||/8 as cube_root
select
Expand Down
4 changes: 2 additions & 2 deletions crates/uroborosql-fmt/testfiles/src/select/unary.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ select ~5 as bitwise_not
select ~ 5 as bitwise_not

select |/25 as square_root
select @-5 as absolute_value
select |/ 25 as square_root

select @-5 as absolute_value
select @ -5 as absolute_value
select |/ 25 as square_root

select ||/8 as cube_root
select ||/ 8 as cube_root

0 comments on commit 966376a

Please sign in to comment.