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

Unified Diff: tests/corelib/uri_query_test.dart

Issue 16107006: Fix deprecation warning (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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: tests/corelib/uri_query_test.dart
diff --git a/tests/corelib/uri_query_test.dart b/tests/corelib/uri_query_test.dart
index e6f7bb536da7317165e44eb81e3437faf1a75b88..03c9abaf0d10708b11406705a7f5a8afa1ad245e 100644
--- a/tests/corelib/uri_query_test.dart
+++ b/tests/corelib/uri_query_test.dart
@@ -20,7 +20,7 @@ void testEncodeQueryComponent() {
void testQueryParameters() {
test(String query, Map<String, String> parameters, [String normalizedQuery]) {
- if (normalizedQuery === null) normalizedQuery = query;
+ if (normalizedQuery == null) normalizedQuery = query;
check(uri) {
Expect.equals(normalizedQuery, uri.query);
if (query.isEmpty) {
« 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