| Index: third_party/WebKit/Source/core/testing/DictionaryTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/testing/DictionaryTest.cpp b/third_party/WebKit/Source/core/testing/DictionaryTest.cpp
|
| index 07dea6b738fca23238a6c950563b1d1d11ea185b..6a73fe1132f3f32f1b03dfc0e99dd4e31b2a6387 100644
|
| --- a/third_party/WebKit/Source/core/testing/DictionaryTest.cpp
|
| +++ b/third_party/WebKit/Source/core/testing/DictionaryTest.cpp
|
| @@ -173,12 +173,12 @@ String DictionaryTest::stringFromIterable(
|
| ExecutionContext* executionContext = scriptState->getExecutionContext();
|
| DictionaryIterator iterator = iterable.getIterator(executionContext);
|
| if (iterator.isNull())
|
| - return emptyString();
|
| + return emptyString;
|
|
|
| bool firstLoop = true;
|
| while (iterator.next(executionContext, exceptionState)) {
|
| if (exceptionState.hadException())
|
| - return emptyString();
|
| + return emptyString;
|
|
|
| if (firstLoop)
|
| firstLoop = false;
|
|
|