| Index: third_party/WebKit/Source/core/streams/ReadableStreamOperationsTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/streams/ReadableStreamOperationsTest.cpp b/third_party/WebKit/Source/core/streams/ReadableStreamOperationsTest.cpp
|
| index 573ccd1ab0e812cd5e85532c482ffc2be7ba585a..9cd2e60bd644f73c418d0f6bc3998d048f5ee03b 100644
|
| --- a/third_party/WebKit/Source/core/streams/ReadableStreamOperationsTest.cpp
|
| +++ b/third_party/WebKit/Source/core/streams/ReadableStreamOperationsTest.cpp
|
| @@ -359,16 +359,6 @@ TEST_F(ReadableStreamOperationsTest, UnderlyingSourceShouldHavePendingActivityWh
|
| EXPECT_FALSE(underlyingSource->hasPendingActivity());
|
| }
|
|
|
| -TEST_F(ReadableStreamOperationsTest, SetDisturbed)
|
| -{
|
| - ScriptValue stream = evalWithPrintingError("new ReadableStream()");
|
| - ASSERT_FALSE(stream.isEmpty());
|
| -
|
| - EXPECT_FALSE(ReadableStreamOperations::isDisturbed(getScriptState(), stream));
|
| - ReadableStreamOperations::setDisturbed(getScriptState(), stream);
|
| - EXPECT_TRUE(ReadableStreamOperations::isDisturbed(getScriptState(), stream));
|
| -}
|
| -
|
| TEST_F(ReadableStreamOperationsTest, IsReadable)
|
| {
|
| ScriptValue readable = evalWithPrintingError("new ReadableStream()");
|
|
|