| Index: pkg/expect/lib/expect.dart
|
| diff --git a/pkg/expect/lib/expect.dart b/pkg/expect/lib/expect.dart
|
| index 25c97d98f3b17f246902d9d88675f908b06770f4..20d216f1a6020596e46531b46351ecd0b01b5bea 100644
|
| --- a/pkg/expect/lib/expect.dart
|
| +++ b/pkg/expect/lib/expect.dart
|
| @@ -29,7 +29,6 @@ class Expect {
|
| * Control characters may be encoded as "\xhh" codes.
|
| */
|
| static String _truncateString(String string, int start, int end, int length) {
|
| - print("$string: $start: $end: $length");
|
| if (end - start > length) {
|
| end = start + length;
|
| } else if (end - start < length) {
|
| @@ -69,7 +68,6 @@ class Expect {
|
| * only a slice containing the first difference will be shown.
|
| */
|
| static String _stringDifference(String expected, String actual) {
|
| - print("digg: $expected, $actual");
|
| if (expected.length < 20 && actual.length < 20) return null;
|
| for (int i = 0; i < expected.length && i < actual.length; i++) {
|
| if (expected.codeUnitAt(i) != actual.codeUnitAt(i)) {
|
|
|