File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
pkgs/native_toolchain_c/test/native_toolchain Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 22// for details. All rights reserved. Use of this source code is governed by a
33// BSD-style license that can be found in the LICENSE file.
44
5+ import 'dart:io' ;
6+
57import 'package:native_toolchain_c/src/native_toolchain/android_ndk.dart' ;
68import 'package:native_toolchain_c/src/tool/tool_requirement.dart' ;
79import 'package:native_toolchain_c/src/tool/tool_resolver.dart' ;
@@ -39,7 +41,7 @@ void main() {
3941
4042 expect (
4143 resolved.map ((e) => e.uri.toFilePath ()),
42- contains (d.path ('fake_android/ndk/1.3.37/ ' )),
44+ contains (d.path ('fake_android/ndk/1.3.37${ Platform . pathSeparator } ' )),
4345 );
4446 });
4547
@@ -58,7 +60,7 @@ void main() {
5860
5961 expect (
6062 resolved.map ((e) => e.uri.toFilePath ()),
61- contains (d.path ('weird/ndk/directory/ ' )),
63+ contains (d.path ('weird/ndk/directory${ Platform . pathSeparator } ' )),
6264 );
6365 });
6466}
You can’t perform that action at this time.
0 commit comments