Skip to content

Commit ebea388

Browse files
committed
Default to just Ubuntu for the WSL tests
1 parent e0a8b19 commit ebea388

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/LibObjectFile.Tests/LinuxUtil.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public static string ReadElf(string file, string arguments = "-W -a")
1717
return RunLinuxExe("readelf", $"{file} {arguments}");
1818
}
1919

20-
public static string RunLinuxExe(string exe, string arguments, string distribution = "Ubuntu-20.04")
20+
public static string RunLinuxExe(string exe, string arguments, string distribution = "Ubuntu")
2121
{
2222
if (exe == null) throw new ArgumentNullException(nameof(exe));
2323
if (arguments == null) throw new ArgumentNullException(nameof(arguments));

0 commit comments

Comments
 (0)