Skip to content

Commit 3cc425c

Browse files
committed
Revert bug in gtest suite (expect success)
1 parent 6fb708c commit 3cc425c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/test/test_filtering.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ TEST(FilteringHTest, TransPolyfitter) {
7676
unsigned int count=0;
7777
for (unsigned int p=p_start; p <= p_end; ++p, ++count) {
7878
for (unsigned int f=0; f < n_frames; ++f) {
79-
ASSERT_GT(std::abs(y[p*n_frames+f] - y2[count*n_frames+f]), epsilon);
79+
ASSERT_LT(std::abs(y[p*n_frames+f] - y2[count*n_frames+f]), epsilon);
8080
}
8181
}
8282
}

0 commit comments

Comments
 (0)