Skip to content

Commit

Permalink
Fix comflict
Browse files Browse the repository at this point in the history
  • Loading branch information
TApplencourt committed Jan 30, 2025
2 parents c2f6ba0 + 88ec282 commit 57f9966
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/extension/khr_queue_empty_query/queue_empty.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,7 @@ TEST_CASE("queue are not empty when a command have been enqueed",
std::promise<void> promise;

auto e1 = q.submit([&](sycl::handler& cgh) {
cgh.host_task([&]() {
promise.get_future().wait();
});
cgh.host_task([&]() { promise.get_future().wait(); });
});
CHECK(!q.khr_empty());
auto e2 = q.single_task(e1, [=] {});
Expand Down

0 comments on commit 57f9966

Please sign in to comment.