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

Unified Diff: packages/barback/test/asset_id_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/pubspec.yaml ('k') | packages/barback/test/asset_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/barback/test/asset_id_test.dart
diff --git a/packages/barback/test/asset_id_test.dart b/packages/barback/test/asset_id_test.dart
index 16d29aee65519934d223e9f888426258745d1f64..8fb4b96498fafa077a2755d263c4227b67d3145a 100644
--- a/packages/barback/test/asset_id_test.dart
+++ b/packages/barback/test/asset_id_test.dart
@@ -54,13 +54,13 @@ main() {
});
test("equals another ID with the same package and path", () {
- expect(new AssetId.parse("foo|asset.txt"), equals(
- new AssetId.parse("foo|asset.txt")));
+ expect(new AssetId.parse("foo|asset.txt"),
+ equals(new AssetId.parse("foo|asset.txt")));
- expect(new AssetId.parse("foo|asset.txt"), isNot(equals(
- new AssetId.parse("bar|asset.txt"))));
+ expect(new AssetId.parse("foo|asset.txt"),
+ isNot(equals(new AssetId.parse("bar|asset.txt"))));
- expect(new AssetId.parse("foo|asset.txt"), isNot(equals(
- new AssetId.parse("bar|other.txt"))));
+ expect(new AssetId.parse("foo|asset.txt"),
+ isNot(equals(new AssetId.parse("bar|other.txt"))));
});
}
« no previous file with comments | « packages/barback/pubspec.yaml ('k') | packages/barback/test/asset_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698