Skip to content

Commit

Permalink
fix(ci) fix std.fs.Path.extension tests
Browse files Browse the repository at this point in the history
  • Loading branch information
StunxFS authored Nov 15, 2023
1 parent e463cdb commit fa21b36
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 @@ -106,7 +106,7 @@ test "std.fs.Path.extension()" {
@assert(Path.extension("file.ext.") == "");
@assert(Path.extension("very-long-file.bruh") == ".bruh");
@assert(Path.extension("a.b.c") == ".c");
@assert(Path.extension("a.b.c/") == ".c");
@assert(Path.extension("a.b.c/") == "");

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

0 comments on commit fa21b36

Please sign in to comment.