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

Unified Diff: tests/language/library_env_test.dart

Issue 2765893003: Fix warnings_checker.dart handling of multitests (Closed)
Patch Set: Created 3 years, 9 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 | « tests/language/library_ambiguous_test.dart ('k') | tests/language/list_literal1_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/library_env_test.dart
diff --git a/tests/language/library_env_test.dart b/tests/language/library_env_test.dart
index 01cc4be7db7c134c44725e2bc2022a51b04edfcc..f159bebb83651502a821caa2a1d0072ed3f9e1d4 100644
--- a/tests/language/library_env_test.dart
+++ b/tests/language/library_env_test.dart
@@ -21,8 +21,8 @@ main() {
bool hasHtmlSupport;
- hasHtmlSupport = true; // /// has_html_support: ok
- hasHtmlSupport = false; // /// has_no_html_support: ok
+ hasHtmlSupport = true; // //# has_html_support: ok
+ hasHtmlSupport = false; // //# has_no_html_support: ok
if (hasHtmlSupport != null) {
bool expectedResult = hasHtmlSupport ? true : NOT_PRESENT;
@@ -48,8 +48,8 @@ main() {
}
bool hasIoSupport;
- hasIoSupport = true; // /// has_io_support: ok
- hasIoSupport = false; // /// has_no_io_support: ok
+ hasIoSupport = true; // //# has_io_support: ok
+ hasIoSupport = false; // //# has_no_io_support: ok
if (hasIoSupport != null) {
// Dartium overrides 'dart.library.io' to return "false".
@@ -61,8 +61,8 @@ main() {
}
bool hasMirrorSupport;
- hasMirrorSupport = true; // /// has_mirror_support: ok
- hasMirrorSupport = false; // /// has_no_mirror_support: ok
+ hasMirrorSupport = true; // //# has_mirror_support: ok
+ hasMirrorSupport = false; // //# has_no_mirror_support: ok
if (hasMirrorSupport != null) {
bool expectedResult = hasMirrorSupport ? true : NOT_PRESENT;
« no previous file with comments | « tests/language/library_ambiguous_test.dart ('k') | tests/language/list_literal1_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698