Trivial source code format tweak.
This commit is contained in:
		@@ -40,7 +40,6 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#include <gtest/gtest.h>
 | 
					#include <gtest/gtest.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
namespace {
 | 
					namespace {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Test case FooTest.
 | 
					// Test case FooTest.
 | 
				
			||||||
@@ -55,7 +54,6 @@ TEST_F(FooTest, Xyz) {
 | 
				
			|||||||
  FAIL() << "Expected failure.";
 | 
					  FAIL() << "Expected failure.";
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
// Test case BarTest.
 | 
					// Test case BarTest.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
TEST(BarTest, TestOne) {
 | 
					TEST(BarTest, TestOne) {
 | 
				
			||||||
@@ -109,7 +107,6 @@ TEST(HasDeathTest, Test2) {
 | 
				
			|||||||
#endif  // GTEST_HAS_DEATH_TEST
 | 
					#endif  // GTEST_HAS_DEATH_TEST
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
// Test case FoobarTest
 | 
					// Test case FoobarTest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
TEST(DISABLED_FoobarTest, Test1) {
 | 
					TEST(DISABLED_FoobarTest, Test1) {
 | 
				
			||||||
@@ -142,7 +139,6 @@ INSTANTIATE_TEST_CASE_P(SeqQ, ParamTest, testing::Values(5, 6));
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
}  // namespace
 | 
					}  // namespace
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
int main(int argc, char **argv) {
 | 
					int main(int argc, char **argv) {
 | 
				
			||||||
  testing::InitGoogleTest(&argc, argv);
 | 
					  testing::InitGoogleTest(&argc, argv);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -40,7 +40,6 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#include <gtest/gtest.h>
 | 
					#include <gtest/gtest.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
namespace {
 | 
					namespace {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Several different test cases and tests that will be listed.
 | 
					// Several different test cases and tests that will be listed.
 | 
				
			||||||
@@ -79,7 +78,6 @@ TEST(FooDeathTest, Test1) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
}  // namespace
 | 
					}  // namespace
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
int main(int argc, char **argv) {
 | 
					int main(int argc, char **argv) {
 | 
				
			||||||
  testing::InitGoogleTest(&argc, argv);
 | 
					  testing::InitGoogleTest(&argc, argv);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user