summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/gtest-printers_test.cc4
-rw-r--r--test/gtest_unittest.cc2
2 files changed, 3 insertions, 3 deletions
diff --git a/test/gtest-printers_test.cc b/test/gtest-printers_test.cc
index 9aba39a..8992a9a 100644
--- a/test/gtest-printers_test.cc
+++ b/test/gtest-printers_test.cc
@@ -74,7 +74,7 @@ enum EnumWithoutPrinter {
// An enum with a << operator.
enum EnumWithStreaming {
- kEWS1 = 10,
+ kEWS1 = 10
};
std::ostream& operator<<(std::ostream& os, EnumWithStreaming e) {
@@ -83,7 +83,7 @@ std::ostream& operator<<(std::ostream& os, EnumWithStreaming e) {
// An enum with a PrintTo() function.
enum EnumWithPrintTo {
- kEWPT1 = 1,
+ kEWPT1 = 1
};
void PrintTo(EnumWithPrintTo e, std::ostream* os) {
diff --git a/test/gtest_unittest.cc b/test/gtest_unittest.cc
index 3f0456e..e6619d5 100644
--- a/test/gtest_unittest.cc
+++ b/test/gtest_unittest.cc
@@ -3811,7 +3811,7 @@ TEST(AssertionTest, ExpectWorksWithUncopyableObject) {
enum NamedEnum {
kE1 = 0,
- kE2 = 1,
+ kE2 = 1
};
TEST(AssertionTest, NamedEnum) {