aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/testing/unittest/gtest.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/testing/unittest/gtest.h')
-rw-r--r--library/cpp/testing/unittest/gtest.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/testing/unittest/gtest.h b/library/cpp/testing/unittest/gtest.h
index 594feaca8a..b6768b1bf0 100644
--- a/library/cpp/testing/unittest/gtest.h
+++ b/library/cpp/testing/unittest/gtest.h
@@ -78,7 +78,7 @@ namespace testing {
#define EXPECT_EQ(A, B) UNIT_ASSERT_VALUES_EQUAL(A, B)
#define EXPECT_NE(A, B) UNIT_ASSERT_UNEQUAL(A, B)
-#define EXPECT_LE(A, B) UNIT_ASSERT((A) <= (B))
+#define EXPECT_LE(A, B) UNIT_ASSERT((A) <= (B))
#define EXPECT_LT(A, B) UNIT_ASSERT((A) < (B))
#define EXPECT_GE(A, B) UNIT_ASSERT((A) >= (B))
#define EXPECT_GT(A, B) UNIT_ASSERT((A) > (B))