Skip to content

Commit 55185d0

Browse files
committed
#9 - ENH: Add PathConversion with static helper methods to convert common types to String for path building
1 parent 947d665 commit 55185d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/test/java/io/avaje/http/client/UrlBuilderTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ void path() {
2020
assertThat(new UrlBuilder("https://foo").path("bar").build()).isEqualTo("https://foo/bar");
2121
}
2222

23-
` @Test
23+
@Test
2424
void path_otherTypes() {
2525
LocalDate date = LocalDate.of(2020, 5, 12);
2626
UUID uuid = UUID.randomUUID();

0 commit comments

Comments
 (0)