Skip to content

Commit

Permalink
Fixing FileIDTest
Browse files Browse the repository at this point in the history
  • Loading branch information
joakime committed Jun 21, 2024
1 parent b15cfd1 commit 99faa7a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ public static Stream<Arguments> fileNameSource()
Arguments.of(URI.create("file:///path/to/test.txt"), "test.txt"),
Arguments.of(URI.create("file:///path/to/dir/"), "dir"),
Arguments.of(URI.create("jar:file:///home/user/libs/jetty-server-12.jar!/org/eclipse/jetty/server/jetty-dir.css"), "jetty-dir.css"),
Arguments.of(URI.create("https://jetty.org/"), "jetty"),
Arguments.of(URI.create("https://jetty.org/"), ""),
Arguments.of(URI.create("https://jetty.org/docs/"), "docs"),
Arguments.of(URI.create("https://jetty.org/index.html"), "index.html"),
Arguments.of(URI.create("https://jetty.org/docs.html?query=val#anchor"), "docs.html")
);
Expand Down

0 comments on commit 99faa7a

Please sign in to comment.