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

Unified Diff: packages/barback/test/logger_test.dart

Issue 3015713002: Roll to pickup pool changes
Patch Set: Created 3 years, 3 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/barback/test/barback_mode_test.dart ('k') | packages/barback/test/multiset_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/barback/test/logger_test.dart
diff --git a/packages/barback/test/logger_test.dart b/packages/barback/test/logger_test.dart
index 5c42b2e21a1b007b5d2e5482c71b03642451cc9d..342d68c782ab29a3296927809aac98b0a20e668b 100644
--- a/packages/barback/test/logger_test.dart
+++ b/packages/barback/test/logger_test.dart
@@ -20,8 +20,12 @@ main() {
"info: This is info.",
"fine: This is fine."
]);
- initGraph(["app|foo.txt"], {
- "app": [[transformer]]
+ initGraph([
+ "app|foo.txt"
+ ], {
+ "app": [
+ [transformer]
+ ]
});
updateSources(["app|foo.txt"]);
@@ -39,9 +43,17 @@ main() {
"fine: This is fine."
]);
- initGraph(["app|foo.txt"], {"app": [
- [new TransformerGroup([[transformer]])]
- ]});
+ initGraph([
+ "app|foo.txt"
+ ], {
+ "app": [
+ [
+ new TransformerGroup([
+ [transformer]
+ ])
+ ]
+ ]
+ });
updateSources(["app|foo.txt"]);
buildShouldLog(LogLevel.ERROR, equals("This is an error."));
« no previous file with comments | « packages/barback/test/barback_mode_test.dart ('k') | packages/barback/test/multiset_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698