From 54d6522dad2c756d8c18077869f010d325d521b3 Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Thu, 10 Mar 2016 10:44:42 -0800 Subject: [PATCH] dartfmt --- test/generate/build_test.dart | 13 +++++-------- test/generate/watch_test.dart | 4 ++-- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/test/generate/build_test.dart b/test/generate/build_test.dart index 6732b1b6d..fdbcf6ffa 100644 --- a/test/generate/build_test.dart +++ b/test/generate/build_test.dart @@ -140,8 +140,7 @@ main() { { 'a|lib/a.txt': 'a', 'a|lib/a.txt.copy': 'a', - 'a|$assetGraphPath': - JSON.encode(emptyGraph.serialize()), + 'a|$assetGraphPath': JSON.encode(emptyGraph.serialize()), }, status: BuildStatus.Failure, exceptionMatcher: invalidOutputException); @@ -269,8 +268,7 @@ main() { 'a|lib/a.txt.copy.clone': 'a', 'a|lib/b.txt.copy': 'b', 'a|lib/b.txt.copy.clone': 'b', - 'a|$assetGraphPath': - JSON.encode(graph.serialize()), + 'a|$assetGraphPath': JSON.encode(graph.serialize()), }, outputs: {'a|lib/a.txt.copy': 'b', 'a|lib/a.txt.copy.clone': 'b',}, writer: writer); @@ -299,15 +297,14 @@ main() { { 'a|lib/a.txt.copy': 'a', 'a|lib/a.txt.copy.clone': 'a', - 'a|$assetGraphPath': - JSON.encode(graph.serialize()), + 'a|$assetGraphPath': JSON.encode(graph.serialize()), }, outputs: {}, writer: writer); /// Should be deleted using the writer, and removed from the new graph. - var newGraph = new AssetGraph.deserialize(JSON.decode(writer - .assets[makeAssetId('a|$assetGraphPath')].value)); + var newGraph = new AssetGraph.deserialize( + JSON.decode(writer.assets[makeAssetId('a|$assetGraphPath')].value)); expect(newGraph.contains(aNode.id), isFalse); expect(newGraph.contains(aCopyNode.id), isFalse); expect(newGraph.contains(aCloneNode.id), isFalse); diff --git a/test/generate/watch_test.dart b/test/generate/watch_test.dart index 2d91cf188..a526c1042 100644 --- a/test/generate/watch_test.dart +++ b/test/generate/watch_test.dart @@ -114,8 +114,8 @@ main() { result = await nextResult(results); checkOutputs({'a|web/c.txt.copy': 'c'}, result, writer.assets); - var cachedGraph = new AssetGraph.deserialize(JSON.decode(writer - .assets[makeAssetId('a|$assetGraphPath')].value)); + var cachedGraph = new AssetGraph.deserialize( + JSON.decode(writer.assets[makeAssetId('a|$assetGraphPath')].value)); var expectedGraph = new AssetGraph(); var bCopyNode = makeAssetNode('a|web/b.txt.copy');