aboutsummaryrefslogtreecommitdiff
path: root/tests/src/test/scala/com/softwaremill/sttp/UriInterpolatorTests.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/test/scala/com/softwaremill/sttp/UriInterpolatorTests.scala')
-rw-r--r--tests/src/test/scala/com/softwaremill/sttp/UriInterpolatorTests.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/test/scala/com/softwaremill/sttp/UriInterpolatorTests.scala b/tests/src/test/scala/com/softwaremill/sttp/UriInterpolatorTests.scala
index 8ad8aea..0f30f8a 100644
--- a/tests/src/test/scala/com/softwaremill/sttp/UriInterpolatorTests.scala
+++ b/tests/src/test/scala/com/softwaremill/sttp/UriInterpolatorTests.scala
@@ -20,7 +20,7 @@ class UriInterpolatorTests extends FlatSpec with Matchers {
for (((interpolated, expected), i) <- testData.zipWithIndex) {
it should s"interpolate to $expected ($i)" in {
- interpolated should be (new URI(expected))
+ interpolated should be(new URI(expected))
}
}
}