summaryrefslogtreecommitdiff
path: root/src/msan_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/msan_test.cpp')
-rw-r--r--src/msan_test.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/msan_test.cpp b/src/msan_test.cpp
index 9fcb9d530c..7e42e48659 100644
--- a/src/msan_test.cpp
+++ b/src/msan_test.cpp
@@ -1,7 +1,9 @@
#include <string>
+
#include "gtest/gtest.h"
-TEST(MemorySanitizer, TestIsWorking) {
- std::string foo("foo");
- EXPECT_STREQ("foo", foo.c_str());
+TEST(MemorySanitizer, TestIsWorking)
+{
+ std::string foo("foo");
+ EXPECT_STREQ("foo", foo.c_str());
}