File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ def find_runtimes() -> Iterator[DotnetCoreRuntimeSpec]:
105105 return find_runtimes_in_root (dotnet_root )
106106
107107
108- def find_libmono (* , assembly_dir : str = None , sgen : bool = True ) -> Path :
108+ def find_libmono (* , assembly_dir : Optional [ str ] = None , sgen : bool = True ) -> Path :
109109 """Find a suitable libmono dynamic library
110110
111111 On Windows and macOS, we check the default installation directories.
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ def test_mono_trace_level(example_netstandard: Path):
7777def test_mono_set_dir (example_netstandard : Path ):
7878 from clr_loader import get_mono
7979
80- mono = get_mono (assembly_dir = "/usr/lib " , config_dir = "/etc" )
80+ mono = get_mono (assembly_dir = "/usr" , config_dir = "/etc" )
8181 asm = mono .get_assembly (example_netstandard / "example.dll" )
8282
8383 run_tests (asm )
You can’t perform that action at this time.
0 commit comments