Skip to content

Commit

Permalink
Change precision of test case TTPlayOpusOgg
Browse files Browse the repository at this point in the history
  • Loading branch information
bear101 committed Oct 31, 2024
1 parent a4d0305 commit 97c4461
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Library/TeamTalkLib/test/CatchDefault.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3981,7 +3981,7 @@ TEST_CASE("TTPlayOpusOgg")
REQUIRE(paused);
durationMSec = GETTIMESTAMP() - durationMSec;
// precision reduced due to GitHub CI being slow
REQUIRE(int(durationMSec) > int(mfi.uDurationMSec + 1000));
REQUIRE(int(durationMSec) >= int(mfi.uDurationMSec + 1000));
}

TEST_CASE("TTPlayFFmpegOpus")
Expand Down

0 comments on commit 97c4461

Please sign in to comment.