| Index: tests/standalone/io/test_runner_test.dart
|
| diff --git a/tests/standalone/io/test_runner_test.dart b/tests/standalone/io/test_runner_test.dart
|
| index b9ad2c6123454893fdf673d082bc7385078ae9a0..cfa88a194b740edb3f655edafd3392c6fb07ae6a 100644
|
| --- a/tests/standalone/io/test_runner_test.dart
|
| +++ b/tests/standalone/io/test_runner_test.dart
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
| +// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| @@ -73,8 +73,8 @@ class CustomTestSuite extends TestSuite {
|
| var crashCommand = new Command(getProcessTestFileName(),
|
| ["0", "0", "1", "1"]);
|
| // The crash test sometimes times out. Run it with a large timeout
|
| - // to help diagnose the delay.
|
| - // The test loads a new executable, which may sometimes take a long time.
|
| + // to help diagnose the delay.
|
| + // The test loads a new executable, which may sometimes take a long time.
|
| // It involves a wait on the VM event loop, and possible system
|
| // delays.
|
| return _makeTestCase(name, LONG_TIMEOUT, crashCommand, expectations);
|
| @@ -95,7 +95,7 @@ void testProcessQueue() {
|
| var maxProcesses = 2;
|
| var maxBrowserProcesses = maxProcesses;
|
| new ProcessQueue(maxProcesses, maxBrowserProcesses,
|
| - new DateTime.now(), [new CustomTestSuite()], [], TestController.finished);
|
| + new Date.now(), [new CustomTestSuite()], [], TestController.finished);
|
| }
|
|
|
| void main() {
|
|
|