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

Unified Diff: tests/compiler/dart2js/uri_extras_test.dart

Issue 11361190: a === b -> identical(a, b) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 8 years, 1 month 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
Index: tests/compiler/dart2js/uri_extras_test.dart
diff --git a/tests/compiler/dart2js/uri_extras_test.dart b/tests/compiler/dart2js/uri_extras_test.dart
index 65a524a94ec10b75b17a65f0d0b46cf4f74ced19..199076ade67c1f82bf7d0b8e8b8f63fb26586203 100644
--- a/tests/compiler/dart2js/uri_extras_test.dart
+++ b/tests/compiler/dart2js/uri_extras_test.dart
@@ -9,7 +9,7 @@ import '../../../sdk/lib/_internal/compiler/implementation/util/uri_extras.dart'
void testRelativize() {
void c(String expected, String base, String path, bool isWindows) {
- if (isWindows === null) {
+ if (isWindows == null) {
c(expected, base, path, true);
c(expected, base, path, false);
return;
« no previous file with comments | « tests/compiler/dart2js/type_equals_test.dart ('k') | tests/compiler/dart2js_extra/bailout_on_break_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698