Skip to content

Commit

Permalink
fix(ci): fix std.fs.Path.extension() tests x2
Browse files Browse the repository at this point in the history
  • Loading branch information
StunxFS committed Nov 15, 2023
1 parent c249d89 commit e463cdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/std/tests/fs_test.ri
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ test "std.fs.Path.extension()" {
@assert(Path.extension("/file.ext") == ".ext");
@assert(Path.extension("/file.ext.") == "");
@assert(Path.extension("/very-long-file.bruh") == ".bruh");
@assert(Path.extension("/a.b.c") == "");
@assert(Path.extension("/a.b.c") == ".c");
@assert(Path.extension("/a.b.c/") == "");

@assert(Path.extension("/foo/bar/bam/") == "");
Expand Down

0 comments on commit e463cdb

Please sign in to comment.