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

Unified Diff: tests/language/library_env_test.dart

Issue 2765693002: Update all tests (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
Index: tests/language/library_env_test.dart
diff --git a/tests/language/library_env_test.dart b/tests/language/library_env_test.dart
index bbe3b8419791f311cceb08e0220cff85d6d063ce..4d6241b78559afd871fd702dfa94c1a00237515f 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;

Powered by Google App Engine
This is Rietveld 408576698