| Index: test/cctest/test-api.cc
 | 
| diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc
 | 
| index af512296fb0c5a7aab1d65811a1c7dc8e21d45a9..fa82ae373d074cfed31d96a7834a0ff17a96a61c 100644
 | 
| --- a/test/cctest/test-api.cc
 | 
| +++ b/test/cctest/test-api.cc
 | 
| @@ -16794,8 +16794,6 @@ TEST(SourceURLInStackTrace) {
 | 
|    i::ScopedVector<char> code(1024);
 | 
|    i::SNPrintF(code, source, "//# sourceURL=eval_url");
 | 
|    CHECK(CompileRun(code.start())->IsUndefined());
 | 
| -  i::SNPrintF(code, source, "//@ sourceURL=eval_url");
 | 
| -  CHECK(CompileRun(code.start())->IsUndefined());
 | 
|  }
 | 
|  
 | 
|  
 | 
| @@ -16876,8 +16874,6 @@ TEST(InlineScriptWithSourceURLInStackTrace) {
 | 
|    i::ScopedVector<char> code(1024);
 | 
|    i::SNPrintF(code, source, "//# sourceURL=source_url");
 | 
|    CHECK(CompileRunWithOrigin(code.start(), "url", 0, 1)->IsUndefined());
 | 
| -  i::SNPrintF(code, source, "//@ sourceURL=source_url");
 | 
| -  CHECK(CompileRunWithOrigin(code.start(), "url", 0, 1)->IsUndefined());
 | 
|  }
 | 
|  
 | 
|  
 | 
| @@ -16922,8 +16918,6 @@ TEST(DynamicWithSourceURLInStackTrace) {
 | 
|    i::ScopedVector<char> code(1024);
 | 
|    i::SNPrintF(code, source, "//# sourceURL=source_url");
 | 
|    CHECK(CompileRunWithOrigin(code.start(), "url", 0, 0)->IsUndefined());
 | 
| -  i::SNPrintF(code, source, "//@ sourceURL=source_url");
 | 
| -  CHECK(CompileRunWithOrigin(code.start(), "url", 0, 0)->IsUndefined());
 | 
|  }
 | 
|  
 | 
|  
 | 
| 
 |