Skip to content

Commit

Permalink
Add another order clause to fix another non-deterministic test
Browse files Browse the repository at this point in the history
  • Loading branch information
weiznich committed Feb 7, 2024
1 parent 3383b42 commit 46df556
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions diesel_tests/tests/insert_from_select.rs
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,7 @@ fn on_conflict_do_update_with_boxed_select() {

users
.select((id, name.concat(" says hi")))
.order(id)
.into_boxed()
.insert_into(posts)
.into_columns((user_id, title))
Expand All @@ -411,6 +412,7 @@ fn on_conflict_do_update_with_boxed_select() {

users
.select((id, name.concat(" says hi")))
.order(id)
.into_boxed()
.insert_into(posts)
.into_columns((user_id, title))
Expand Down

0 comments on commit 46df556

Please sign in to comment.