| Index: client/dom/benchmarks/dromaeo/tests/RunnerSuite.dart
|
| diff --git a/client/dom/benchmarks/dromaeo/tests/RunnerSuite.dart b/client/dom/benchmarks/dromaeo/tests/RunnerSuite.dart
|
| index aeeb369e2b4faba2b635f4cefb82c5bbd0a89d0f..a02c2fae949bc7cf4c347012902271ac89fd7211 100644
|
| --- a/client/dom/benchmarks/dromaeo/tests/RunnerSuite.dart
|
| +++ b/client/dom/benchmarks/dromaeo/tests/RunnerSuite.dart
|
| @@ -44,7 +44,7 @@ class Suite {
|
| * [:name:] The unique name of the test
|
| * [:test:] A function holding the test to run
|
| */
|
| - Suite test(String name, Test test) {
|
| + Suite test(String name, Test test_) {
|
| _nTests++;
|
| // Don't execute the test immediately.
|
| return _addOperation(() {
|
| @@ -62,7 +62,7 @@ class Suite {
|
|
|
| int cur = new Date.now().value;
|
| while ((cur - start) < 1000) {
|
| - test();
|
| + test_();
|
| cur = new Date.now().value;
|
| runs++;
|
| }
|
|
|