Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2164)

Unified Diff: packages/matcher/test/escape_test.dart

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « packages/matcher/test/core_matchers_test.dart ('k') | packages/matcher/test/iterable_matchers_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/matcher/test/escape_test.dart
diff --git a/packages/matcher/test/escape_test.dart b/packages/matcher/test/escape_test.dart
index 35a18bcff0745c066125dd6be85a1a2b8ec09964..348afe0add89bf4790959c02996da31373b7015a 100644
--- a/packages/matcher/test/escape_test.dart
+++ b/packages/matcher/test/escape_test.dart
@@ -2,8 +2,6 @@
// 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.
-library matcher.escape_test;
-
import 'package:matcher/src/util.dart';
import 'package:test/test.dart';
@@ -20,7 +18,8 @@ void main() {
_testEscaping('ASCII control character', '\x11', r'\x11');
_testEscaping('delete', '\x7F', r'\x7F');
_testEscaping('escape combos', r'\n', r'\\n');
- _testEscaping('All characters',
+ _testEscaping(
+ 'All characters',
'A new line\nA charriage return\rA form feed\fA backspace\b'
'A tab\tA vertical tab\vA slash\\A null byte\x00A control char\x1D'
'A delete\x7F',
@@ -42,7 +41,7 @@ void _testEscaping(String name, String source, String target) {
var escaped = escape(source);
expect(escaped == target, isTrue,
reason: "Expected escaped value: $target\n"
- " Actual escaped value: $escaped");
+ " Actual escaped value: $escaped");
});
}
« no previous file with comments | « packages/matcher/test/core_matchers_test.dart ('k') | packages/matcher/test/iterable_matchers_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698