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

Unified Diff: sdk/lib/_internal/pub/test/version_solver_test.dart

Issue 23702061: Fix warnings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. Created 7 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 | « sdk/lib/_internal/pub/test/serve/with_configuration_only_instantiates_configurable_transformers_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/test/version_solver_test.dart
diff --git a/sdk/lib/_internal/pub/test/version_solver_test.dart b/sdk/lib/_internal/pub/test/version_solver_test.dart
index bbe86acccdbc77e1c708a59f8114a85e599d5fde..0a8da4c305945ab25f8c1c0e5e999eeb4a2c7918 100644
--- a/sdk/lib/_internal/pub/test/version_solver_test.dart
+++ b/sdk/lib/_internal/pub/test/version_solver_test.dart
@@ -14,7 +14,6 @@ import '../lib/src/package.dart';
import '../lib/src/pubspec.dart';
import '../lib/src/sdk.dart' as sdk;
import '../lib/src/source.dart';
-import '../lib/src/source_registry.dart';
import '../lib/src/system_cache.dart';
import '../lib/src/version.dart';
import '../lib/src/solver/version_solver.dart';
@@ -959,7 +958,7 @@ class SolveSuccessMatcher implements Matcher {
}
description.add('Resolved:\n${_listPackages(result.packages)}\n');
- description.add(state.state);
+ description.add(state['failures']);
return description;
}
@@ -991,7 +990,7 @@ class SolveSuccessMatcher implements Matcher {
}
if (!failures.isEmpty) {
- state.state = failures.toString();
+ state['failures'] = failures.toString();
return false;
}
@@ -1029,7 +1028,7 @@ class SolveFailMatcher implements Matcher {
Description describeMismatch(SolveResult result,
Description description,
Map state, bool verbose) {
- description.add(state.state);
+ description.add(state['failures']);
return description;
}
@@ -1060,7 +1059,7 @@ class SolveFailMatcher implements Matcher {
}
if (!failures.isEmpty) {
- state.state = failures.toString();
+ state['failures'] = failures.toString();
return false;
}
« no previous file with comments | « sdk/lib/_internal/pub/test/serve/with_configuration_only_instantiates_configurable_transformers_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698