We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cba675 commit 3297511Copy full SHA for 3297511
modules/http4s-kernel/test/src/smithy4s/http4s/kernel/Http4sConversionSpec.scala
@@ -39,7 +39,7 @@ object Http4sConversionSpec extends SimpleIOSuite {
39
)
40
41
http4sToSmithyAndBackUriTest(
42
- uri"example.com",
+ uri"//example.com",
43
uri"http://example.com/"
44
45
@@ -109,8 +109,8 @@ object Http4sConversionSpec extends SimpleIOSuite {
109
private def http4sToSmithyAndBackUriTest(input: Uri, output: Uri) = {
110
pureTest(s"URI: http4s to smithy4s and back: $input -> $output") {
111
assert.eql(
112
- uri"http://localhost/",
113
- fromSmithy4sHttpUri(toSmithy4sHttpUri(uri"http://localhost/"))
+ output,
+ fromSmithy4sHttpUri(toSmithy4sHttpUri(input))
114
115
}
116
0 commit comments