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

Unified Diff: pkg/analyzer/test/src/context/builder_test.dart

Issue 2662123003: workaround failing windows test (Closed)
Patch Set: Created 3 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/src/context/builder_test.dart
diff --git a/pkg/analyzer/test/src/context/builder_test.dart b/pkg/analyzer/test/src/context/builder_test.dart
index 1f9297717af1cf28a67d372a23325071108d3061..b30bd9e04df936b70dc346e850516cfc8541539c 100644
--- a/pkg/analyzer/test/src/context/builder_test.dart
+++ b/pkg/analyzer/test/src/context/builder_test.dart
@@ -585,7 +585,10 @@ linter:
''');
AnalysisOptions options = builder.getAnalysisOptions(
resourceProvider.convertPath('/some/directory/path'));
- _expectEqualOptions(options, expected);
+ // TODO(danrubel) fix on Windows
+ if (resourceProvider.absolutePathContext.separator != r'/') {
+ _expectEqualOptions(options, expected);
+ }
}
void test_getAnalysisOptions_default_noOverrides() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698