| Index: tools/testing/dart/browser_test.dart
|
| diff --git a/tools/testing/dart/browser_test.dart b/tools/testing/dart/browser_test.dart
|
| index 6cb485e402dd249ac6e5c1dc76e4e2d2bd99a963..2a47456cd0272c7542d0170489695637fbbc438b 100644
|
| --- a/tools/testing/dart/browser_test.dart
|
| +++ b/tools/testing/dart/browser_test.dart
|
| @@ -19,8 +19,8 @@ String GetHtmlContents(String title,
|
| </head>
|
| <body>
|
| <h1> Running $title </h1>
|
| - <script type="text/javascript" src="../../../$controllerScript"></script>
|
| - <script type="$scriptType" src="../../../$sourceScript"></script>
|
| + <script type="text/javascript" src="$controllerScript"></script>
|
| + <script type="$scriptType" src="$sourceScript"></script>
|
| <script type="text/javascript">
|
| // If nobody intercepts the error, finish the test.
|
| onerror = function() { window.layoutTestController.notifyDone() };
|
| @@ -52,9 +52,7 @@ String WrapDartTestInLibrary(String test) =>
|
| #source('$test');
|
| """;
|
|
|
| -String DartTestWrapper(String unittest_ignored,
|
| - String test_ignored,
|
| - String domLibrary,
|
| +String DartTestWrapper(String domLibrary,
|
| String testFramework,
|
| String library) =>
|
| """
|
|
|