We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 025783b commit c2beedfCopy full SHA for c2beedf
1 file changed
src/test/groovy/io/emeraldpay/grpc/EmeraldApiBuilderSpec.groovy
@@ -10,7 +10,7 @@ class EmeraldApiBuilderSpec extends Specification {
10
.connectTo("localhost:1234")
11
then:
12
act.port == 1234
13
- act.host == InetAddress.getByName("localhost")
+ act.host == "localhost"
14
}
15
16
def "Use host if only provided"() {
@@ -19,6 +19,6 @@ class EmeraldApiBuilderSpec extends Specification {
19
.connectTo("google.com")
20
21
act.port == null
22
- act.host == InetAddress.getByName("google.com")
+ act.host == "google.com"
23
24
0 commit comments