Skip to content

Commit 26d779e

Browse files
committed
tests: Fix wrong comparison left after local tests
1 parent f93167e commit 26d779e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/src/tests/tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ TEST_CASE("All options", "[common_plugin]") {
5959

6060
for (int ch = 0; ch < channels; ch++) {
6161
for (int j = 0; j < sampleFrames; j++) {
62-
if (outputs[ch][j] != -1.f) {
62+
if (outputs[ch][j] == -1.f) {
6363
CAPTURE(ch, j);
6464
FAIL("No output written");
6565
}

0 commit comments

Comments
 (0)