| Index: sky/tests/modules/imports-can-load-404s.sky
|
| diff --git a/sky/tests/modules/imports-can-load-404s.sky b/sky/tests/modules/imports-can-load-404s.sky
|
| index 14b55914aba3ed2004d85896a26db0ad714676fb..1a31f2123d989f014b7030804238a16cef311069 100644
|
| --- a/sky/tests/modules/imports-can-load-404s.sky
|
| +++ b/sky/tests/modules/imports-can-load-404s.sky
|
| @@ -3,7 +3,10 @@
|
| <import src="../resources/dump-as-text.sky" />
|
| <div id="result">FAIL - Script did not execute</div>
|
| <script>
|
| -document.getElementById("result").textContent =
|
| - hello === undefined ? "PASS" : "FAIL";
|
| +import "dart:sky";
|
| +
|
| +void main() {
|
| + document.getElementById("result").textContent = "PASS";
|
| +}
|
| </script>
|
| </html>
|
|
|