| Index: frog/tests/leg/resolver_test.dart
|
| diff --git a/frog/tests/leg/resolver_test.dart b/frog/tests/leg/resolver_test.dart
|
| index b728f53eafc347751b585090402be74e545e06d4..2d05e62f7b8372964be76866a5d588560f977138 100644
|
| --- a/frog/tests/leg/resolver_test.dart
|
| +++ b/frog/tests/leg/resolver_test.dart
|
| @@ -359,18 +359,18 @@ testFor() {
|
| }
|
|
|
| checkIdentifier(Element expected, Node node, Element actual) {
|
| - Expect.isTrue(node is Identifier, node.toDebugString());
|
| + Expect.isTrue(node is Identifier, node.toString());
|
| Expect.equals(expected, actual);
|
| }
|
|
|
| checkSend(Element expected, Node node, Element actual) {
|
| - Expect.isTrue(node is Send, node.toDebugString());
|
| - Expect.isTrue(node is !SendSet, node.toDebugString());
|
| + Expect.isTrue(node is Send, node.toString());
|
| + Expect.isTrue(node is !SendSet, node.toString());
|
| Expect.equals(expected, actual);
|
| }
|
|
|
| checkSendSet(Element expected, Node node, Element actual) {
|
| - Expect.isTrue(node is SendSet, node.toDebugString());
|
| + Expect.isTrue(node is SendSet, node.toString());
|
| Expect.equals(expected, actual);
|
| }
|
|
|
|
|