Skip to content

Commit 263e33f

Browse files
committed
Remove unwarranted assumptions in test
1 parent a4d860f commit 263e33f

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

test/yielding_driver.cpp

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -56,21 +56,5 @@ TEST_CASE("Async driver with TBB flow graph", "[async_driver]")
5656
source.activate();
5757
g.wait_for_all();
5858

59-
// Verify expected structure: 1 job + 2 runs + 4 subruns + 12 spills = 19 total
6059
CHECK(received_ids.size() == 19);
61-
62-
// Verify job level
63-
CHECK(received_ids[0] == "[JOB=00000000]");
64-
65-
// Verify we received run IDs
66-
bool has_run_0 = false;
67-
bool has_run_1 = false;
68-
for (auto const& id : received_ids) {
69-
if (id == "[JOB=00000000;RUN=00000000]")
70-
has_run_0 = true;
71-
if (id == "[JOB=00000000;RUN=00000001]")
72-
has_run_1 = true;
73-
}
74-
CHECK(has_run_0);
75-
CHECK(has_run_1);
7660
}

0 commit comments

Comments
 (0)