Fix typo in OAR unit test

This commit is contained in:
kayomn 2022-10-25 01:02:01 +01:00
parent 90f503f7c0
commit 7c5dcc1cde
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ test "Path" {
const joined_component_path = try Path.joined(&.{"path", "to/my", "/file"});
const joined_normalized_path = try Path.joined(&.{"path/to/my/file"});
try testing.expectEqual(empty_path.length, joined_normalized_path.length);
try testing.expectEqual(joined_component_path.length, joined_normalized_path.length);
try testing.expect(joined_component_path.equals(joined_normalized_path));
}