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

Unified Diff: pkg/analysis_server/test/services/correction/assist_test.dart

Issue 800593002: Fix for exchaning comparison operators arguments. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years 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 | « pkg/analysis_server/lib/src/services/correction/assist_internal.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/test/services/correction/assist_test.dart
diff --git a/pkg/analysis_server/test/services/correction/assist_test.dart b/pkg/analysis_server/test/services/correction/assist_test.dart
index e5916c714e7226b6e4733633b124947696bf4b1b..073a0c62c33a5df0358573e26af80d6686b402b6 100644
--- a/pkg/analysis_server/test/services/correction/assist_test.dart
+++ b/pkg/analysis_server/test/services/correction/assist_test.dart
@@ -1008,10 +1008,10 @@ main(A a) {
void test_exchangeBinaryExpressionArguments_OK_compare() {
Map<String, String> operatorMap = {
- '<': '>=',
- '<=': '>',
- '>': '<=',
- '>=': '<'
+ '<': '>',
+ '<=': '>=',
+ '>': '<',
+ '>=': '<='
};
operatorMap.forEach((initialOperator, resultOperator) {
_indexTestUnit('''
« no previous file with comments | « pkg/analysis_server/lib/src/services/correction/assist_internal.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698