Skip to content

Commit 2e4f559

Browse files
committed
threshold
1 parent f086d74 commit 2e4f559

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/modulator_tests.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ TEST_CASE("SimpleLFO is Bounded")
9292
lfo.process_block(rt, def, (slfo_t::Shape)s);
9393
for (int j = 0; j < bs; ++j)
9494
{
95-
REQUIRE(lfo.outputBlock[j] - 1.0 <= 1e-5);
96-
REQUIRE(lfo.outputBlock[j] + 1.0 >= -1e-5);
95+
REQUIRE(lfo.outputBlock[j] - 1.0 <= 5e-5);
96+
REQUIRE(lfo.outputBlock[j] + 1.0 >= -5e-5);
9797
}
9898
}
9999
}

0 commit comments

Comments
 (0)