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

Unified Diff: tests/lib_strong/mirrors/invocation_fuzz_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
Index: tests/lib_strong/mirrors/invocation_fuzz_test.dart
diff --git a/tests/lib_strong/mirrors/invocation_fuzz_test.dart b/tests/lib_strong/mirrors/invocation_fuzz_test.dart
index ed3cb27747b5122fd95361ccc12ffd39c29a46ee..d5f9ca96d73d57da2e06b662970ced13119e63d1 100644
--- a/tests/lib_strong/mirrors/invocation_fuzz_test.dart
+++ b/tests/lib_strong/mirrors/invocation_fuzz_test.dart
@@ -164,10 +164,10 @@ var fuzzArgument;
main() {
fuzzArgument = null;
- fuzzArgument = 1; // /// smi: ok
- fuzzArgument = false; // /// false: ok
- fuzzArgument = 'string'; // /// string: ok
- fuzzArgument = new List(0); // /// emptyarray: ok
+ fuzzArgument = 1; // //# smi: ok
+ fuzzArgument = false; // //# false: ok
+ fuzzArgument = 'string'; // //# string: ok
+ fuzzArgument = new List(0); // //# emptyarray: ok
print('Fuzzing with $fuzzArgument');

Powered by Google App Engine
This is Rietveld 408576698