| Index: Source/wtf/text/StringOperatorsTest.cpp
|
| diff --git a/Source/wtf/text/StringOperatorsTest.cpp b/Source/wtf/text/StringOperatorsTest.cpp
|
| index e27c82e652513225db70e16e6f58b6c42440ce12..efa099677cc4523e232840ead15c04e5a524e988 100644
|
| --- a/Source/wtf/text/StringOperatorsTest.cpp
|
| +++ b/Source/wtf/text/StringOperatorsTest.cpp
|
| @@ -32,7 +32,7 @@ static int wtfStringCopyCount;
|
| #include "wtf/text/WTFString.h"
|
| #include <gtest/gtest.h>
|
|
|
| -namespace {
|
| +namespace WTF {
|
|
|
| #define EXPECT_N_WTF_STRING_COPIES(count, expr) \
|
| do { \
|
| @@ -42,7 +42,7 @@ namespace {
|
| EXPECT_EQ(count, wtfStringCopyCount) << #expr; \
|
| } while (false)
|
|
|
| -TEST(WTF, DISABLED_StringOperators)
|
| +TEST(StringOperatorsTest, DISABLED_StringOperators)
|
| {
|
| String string("String");
|
| AtomicString atomicString("AtomicString");
|
| @@ -185,4 +185,4 @@ TEST(WTF, DISABLED_StringOperators)
|
| #endif
|
| }
|
|
|
| -} // namespace
|
| +} // namespace WTF
|
|
|