| Index: tests/standalone/io/process_test_util.dart
|
| diff --git a/tests/standalone/io/process_test_util.dart b/tests/standalone/io/process_test_util.dart
|
| index 258d89ce6e4c4e1749ede94716fbe824a6d66b82..1de73cb037cd2c69ab416ada04ee5f9a1535454d 100644
|
| --- a/tests/standalone/io/process_test_util.dart
|
| +++ b/tests/standalone/io/process_test_util.dart
|
| @@ -3,14 +3,14 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| String getPlatformOutDir() {
|
| - var os = Platform.operatingSystem();
|
| + var os = Platform.operatingSystem;
|
| if (os == 'linux') return 'out/';
|
| if (os == 'macos') return 'xcodebuild/';
|
| return ''; // Windows.
|
| }
|
|
|
| String getPlatformExecutableExtension() {
|
| - var os = Platform.operatingSystem();
|
| + var os = Platform.operatingSystem;
|
| if (os == 'windows') return '.exe';
|
| return ''; // Linux and Mac OS.
|
| }
|
|
|