problem: net_version response is a plain number, should be string encoded

This commit is contained in:
Igor Artamonov
2020-08-23 21:41:21 -04:00
parent fdd6d6afac
commit f7e1a9289b
2 changed files with 8 additions and 6 deletions

View File

@@ -19,7 +19,7 @@ class HardcodedCallsSpec extends Specification {
when:
def act = client.execute("net_version", [])
then:
act.result == 1
act.result == "1"
act.error == null
}