Skip to content

Commit

Permalink
Update test_merge.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
victimsnino authored Oct 18, 2024
1 parent 26055ff commit 862fb9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/rpp/test_merge.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,8 @@ TEST_CASE_TEMPLATE("merge handles race condition", TestType, rpp::memory_model::
CHECK(!on_error_called);
} },
[&](auto) { on_error_called = true; });
CHECK(t.has_value());
CHECK(t->join());
REQUIRE(t.has_value());
t->join();
CHECK(on_error_called);
}
}
Expand Down

0 comments on commit 862fb9e

Please sign in to comment.