| Index: third_party/WebKit/Source/wtf/text/StringImplTest.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/text/StringImplTest.cpp b/third_party/WebKit/Source/wtf/text/StringImplTest.cpp
|
| index 3173da6f8b8d28873e4b321ad553ceb149a67a63..959d1f4acc01fe9adf7d66f55b2be312cbe55a66 100644
|
| --- a/third_party/WebKit/Source/wtf/text/StringImplTest.cpp
|
| +++ b/third_party/WebKit/Source/wtf/text/StringImplTest.cpp
|
| @@ -31,18 +31,16 @@
|
|
|
| namespace WTF {
|
|
|
| -TEST(StringImplTest, Create8Bit)
|
| -{
|
| - RefPtr<StringImpl> testStringImpl = StringImpl::create("1224");
|
| - EXPECT_TRUE(testStringImpl->is8Bit());
|
| +TEST(StringImplTest, Create8Bit) {
|
| + RefPtr<StringImpl> testStringImpl = StringImpl::create("1224");
|
| + EXPECT_TRUE(testStringImpl->is8Bit());
|
| }
|
|
|
| -TEST(StringImplTest, Latin1CaseFoldTable)
|
| -{
|
| - LChar symbol = 0xff;
|
| - while (symbol--) {
|
| - EXPECT_EQ(Unicode::foldCase(symbol), StringImpl::latin1CaseFoldTable[symbol]);
|
| - }
|
| +TEST(StringImplTest, Latin1CaseFoldTable) {
|
| + LChar symbol = 0xff;
|
| + while (symbol--) {
|
| + EXPECT_EQ(Unicode::foldCase(symbol), StringImpl::latin1CaseFoldTable[symbol]);
|
| + }
|
| }
|
|
|
| -} // namespace WTF
|
| +} // namespace WTF
|
|
|