Skip to content
This repository was archived by the owner on Mar 16, 2025. It is now read-only.

Commit 1f7170c

Browse files
committed
#99, fix uri conversion
1 parent 583362c commit 1f7170c

File tree

1 file changed

+1
-1
lines changed
  • src/test/kotlin/io/openapiprocessor/core/support

1 file changed

+1
-1
lines changed

src/test/kotlin/io/openapiprocessor/core/support/UriSpec.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class UriSpec: StringSpec({
3636
forAll(
3737
row("file://some/path", "file://some/path"),
3838
row("https://some/path", "https://some/path"),
39-
row("some/path", "file:///$current/some/path"),
39+
row("some/path", "file://$current/some/path"),
4040
row("/some/path", "file:///some/path"),
4141
) { source, uri ->
4242
toURI(source).toString() shouldBe uri

0 commit comments

Comments
 (0)