Skip to content

Commit

Permalink
last
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc committed Apr 9, 2024
1 parent aafd57e commit 4e04447
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions worker/test/src/RTC/TestNackGenerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ void validate(std::vector<TestNackGeneratorInput>& inputs)

SCENARIO("ISSUE 1366: https://github.com/versatica/mediasoup/issues/1366")
{
SECTION("absl::btree_set")
SECTION("foo")
{
REQUIRE(RTC::SeqManager<uint16_t>::IsSeqLowerThan(10000, 40000) == true);
REQUIRE(RTC::SeqManager<uint16_t>::IsSeqLowerThan(40000, 60000) == true);
Expand All @@ -159,16 +159,16 @@ SCENARIO("ISSUE 1366: https://github.com/versatica/mediasoup/issues/1366")
REQUIRE(recoveredList.size() == 3);
}

// SECTION("absl::btree_set")
// {
// absl::btree_set<uint16_t, RTC::SeqManager<uint16_t>::SeqLowerThan> recoveredList;
SECTION("absl::btree_set")
{
absl::btree_set<uint16_t, RTC::SeqManager<uint16_t>::SeqLowerThan> recoveredList;

// recoveredList.insert(10000);
// recoveredList.insert(40000);
// recoveredList.insert(60000);
recoveredList.insert(10000);
recoveredList.insert(40000);
recoveredList.insert(60000);

// REQUIRE(recoveredList.size() == 3);
// }
REQUIRE(recoveredList.size() == 3);
}
}

SCENARIO("NACK generator", "[rtp][rtcp]")
Expand Down

0 comments on commit 4e04447

Please sign in to comment.