| Index: content/browser/shared_worker/shared_worker_instance_unittest.cc
|
| diff --git a/content/browser/shared_worker/shared_worker_instance_unittest.cc b/content/browser/shared_worker/shared_worker_instance_unittest.cc
|
| index 238f88eace8aefd488c9707761bcfa8550fee920..4ce3c1a6c9761815e15baf8f2d0ea1dca331facc 100644
|
| --- a/content/browser/shared_worker/shared_worker_instance_unittest.cc
|
| +++ b/content/browser/shared_worker/shared_worker_instance_unittest.cc
|
| @@ -76,7 +76,7 @@ TEST_F(SharedWorkerInstanceTest, MatchesTest) {
|
| EXPECT_FALSE(Matches(instance2, "http://example.net/w.js", ""));
|
| EXPECT_FALSE(Matches(instance2, "http://example.net/w2.js", ""));
|
| EXPECT_TRUE(Matches(instance2, "http://example.com/w.js", "name"));
|
| - EXPECT_TRUE(Matches(instance2, "http://example.com/w2.js", "name"));
|
| + EXPECT_FALSE(Matches(instance2, "http://example.com/w2.js", "name"));
|
| EXPECT_FALSE(Matches(instance2, "http://example.net/w.js", "name"));
|
| EXPECT_FALSE(Matches(instance2, "http://example.net/w2.js", "name"));
|
| EXPECT_FALSE(Matches(instance2, "http://example.com/w.js", "name2"));
|
|
|