| Index: tests/standalone/io/console_unicode_test.dart
|
| diff --git a/tests/standalone/io/console_unicode_test.dart b/tests/standalone/io/console_unicode_test.dart
|
| index d681ff2c717efe276dcdbe27864dce5d83508a49..db89abd096307e82394dcb6417b60b755e9196aa 100644
|
| --- a/tests/standalone/io/console_unicode_test.dart
|
| +++ b/tests/standalone/io/console_unicode_test.dart
|
| @@ -6,26 +6,25 @@ import 'dart:convert';
|
| import 'dart:io';
|
|
|
| main() {
|
| + String canary = "Canary";
|
| String spades = "These are three black spades: ♠♠♠";
|
| String german = "German characters: aäbcdefghijklmnoöpqrsßtuüvwxyz";
|
|
|
| + stdout.writeln(canary);
|
| stdout.writeln(spades);
|
| stdout.writeln(german);
|
| print(spades);
|
| print(german);
|
|
|
| - stdout.add(spades.runes.toList());
|
| - stdout.writeln();
|
| - stdout.add(german.runes.toList());
|
| - stdout.writeln();
|
| -
|
| - stdout.add(spades.codeUnits);
|
| - stdout.writeln();
|
| - stdout.add(german.codeUnits);
|
| + stdout.add(canary.runes.toList());
|
| stdout.writeln();
|
|
|
| + stdout.writeln(canary);
|
| stdout.writeln(spades);
|
| stdout.writeln(german);
|
| print(spades);
|
| print(german);
|
| -}
|
| +
|
| + stdout.add(canary.codeUnits);
|
| + stdout.writeln();
|
| +}
|
|
|