expect 4.3.0

This commit is contained in:
2023-04-22 14:03:03 -06:00
parent e2a25460e7
commit d90566b7e2

View File

@@ -421,7 +421,7 @@ class BasicTestCase extends Test {
// tryProcess returns null on failure:
Assert.equals(null, Prelude.tryProcess("_ThisCoMMaNDWillSURElYFaiLLLLLL", [], error->{return;}));
// tryProcess returns output on success:
Assert.equals("4.2.5", Prelude.tryProcess("haxe", ["--version"], error->{throw error;}));
Assert.equals("4.3.0", Prelude.tryProcess("haxe", ["--version"], error->{throw error;}));
}
#end