| Index: tests/standalone/io/platform_test.dart
|
| diff --git a/tests/standalone/io/platform_test.dart b/tests/standalone/io/platform_test.dart
|
| index c562076e19ac6335a069e0c18258f05da99c7804..ada7ff4ddef31e13c3f8639063b42250f35ce2dc 100644
|
| --- a/tests/standalone/io/platform_test.dart
|
| +++ b/tests/standalone/io/platform_test.dart
|
| @@ -7,7 +7,8 @@
|
| main() {
|
| Expect.isTrue(Platform.numberOfProcessors > 0);
|
| var os = Platform.operatingSystem;
|
| - Expect.isTrue(os == "linux" || os == "macos" || os == "windows");
|
| + Expect.isTrue(os == "android" || os == "linux" || os == "macos" ||
|
| + os == "windows");
|
| var sep = Platform.pathSeparator;
|
| Expect.isTrue(sep == '/' || (os == 'windows' && sep == '\\'));
|
| var hostname = Platform.localHostname;
|
|
|