Skip to content

Commit

Permalink
tests: Fix wrong comparison left after local tests
Browse files Browse the repository at this point in the history
  • Loading branch information
werman committed Jul 23, 2022
1 parent f93167e commit 26d779e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/src/tests/tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ TEST_CASE("All options", "[common_plugin]") {

for (int ch = 0; ch < channels; ch++) {
for (int j = 0; j < sampleFrames; j++) {
if (outputs[ch][j] != -1.f) {
if (outputs[ch][j] == -1.f) {
CAPTURE(ch, j);
FAIL("No output written");
}
Expand Down

0 comments on commit 26d779e

Please sign in to comment.