Skip to content

Commit

Permalink
comment out statements which don't compile
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherlam committed Jan 28, 2024
1 parent 135613e commit 91f4866
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions libgnucash/engine/test/gtest-gnc-numeric.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -438,11 +438,12 @@ TEST(gncnumeric_functions, test_operators)
EXPECT_TRUE (a == c);
EXPECT_TRUE (b != c);

EXPECT_TRUE (b > 0);
EXPECT_TRUE (0 < a);
EXPECT_TRUE (b >= 0);
EXPECT_TRUE (0 <= b);
EXPECT_TRUE (a == 0);
// these don't compile
// EXPECT_TRUE (b > 0);
// EXPECT_TRUE (0 < a);
// EXPECT_TRUE (b >= 0);
// EXPECT_TRUE (0 <= b);
// EXPECT_TRUE (a == 0);
}

TEST(gncnumeric_functions, test_invert)
Expand Down

0 comments on commit 91f4866

Please sign in to comment.