| Index: client/testing/unittest/shared.dart
|
| diff --git a/client/testing/unittest/shared.dart b/client/testing/unittest/shared.dart
|
| index d1836635b5f0997d682218481ae2e7d626edc9b9..26c4729a3194179ffd38fc0ac6b8c7130ae93ee4 100644
|
| --- a/client/testing/unittest/shared.dart
|
| +++ b/client/testing/unittest/shared.dart
|
| @@ -336,16 +336,16 @@ class TestCase {
|
| result = _PASS;
|
| }
|
|
|
| - void fail(String message, String stackTrace) {
|
| + void fail(String message_, String stackTrace_) {
|
| result = _FAIL;
|
| - this.message = message;
|
| - this.stackTrace = stackTrace;
|
| + this.message = message_;
|
| + this.stackTrace = stackTrace_;
|
| }
|
|
|
| - void error(String message, String stackTrace) {
|
| + void error(String message_, String stackTrace_) {
|
| result = _ERROR;
|
| - this.message = message;
|
| - this.stackTrace = stackTrace;
|
| + this.message = message_;
|
| + this.stackTrace = stackTrace_;
|
| }
|
| }
|
|
|
|
|