Skip to content

Commit

Permalink
Fix test build
Browse files Browse the repository at this point in the history
  • Loading branch information
jd-13 committed Jan 28, 2024
1 parent 2fd8e31 commit 0bb7d38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WECore/WEFilters/Tests/TPTSVFilterTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ SCENARIO("TPTSVFilter: Clone works correctly") {
std::vector<double> buffer2 = generateBuffer();
clonedFilter.processBlock(&buffer2[0], buffer2.size());

for (int index {0}; index < buffer1.size(); index++) {
for (size_t index {0}; index < buffer1.size(); index++) {
CHECK(buffer1[index] == Approx(buffer2[index]));
}
}
Expand Down

0 comments on commit 0bb7d38

Please sign in to comment.