We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f086d74 commit 2e4f559Copy full SHA for 2e4f559
tests/modulator_tests.cpp
@@ -92,8 +92,8 @@ TEST_CASE("SimpleLFO is Bounded")
92
lfo.process_block(rt, def, (slfo_t::Shape)s);
93
for (int j = 0; j < bs; ++j)
94
{
95
- REQUIRE(lfo.outputBlock[j] - 1.0 <= 1e-5);
96
- REQUIRE(lfo.outputBlock[j] + 1.0 >= -1e-5);
+ REQUIRE(lfo.outputBlock[j] - 1.0 <= 5e-5);
+ REQUIRE(lfo.outputBlock[j] + 1.0 >= -5e-5);
97
}
98
99
0 commit comments