Fix typo in OAR unit test
This commit is contained in:
parent
90f503f7c0
commit
7c5dcc1cde
|
@ -155,7 +155,7 @@ test "Path" {
|
||||||
const joined_component_path = try Path.joined(&.{"path", "to/my", "/file"});
|
const joined_component_path = try Path.joined(&.{"path", "to/my", "/file"});
|
||||||
const joined_normalized_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));
|
try testing.expect(joined_component_path.equals(joined_normalized_path));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue