diff options
author | Valery Piashchynski <[email protected]> | 2022-03-09 11:47:47 +0100 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2022-03-09 11:47:47 +0100 |
commit | 73865cfc77e587741073a36cf4431b3d2b2dd3fb (patch) | |
tree | c6ea4aab0d80ff06ecb8dcc226dfa1f8c16aeca0 /internal | |
parent | ac021525b68512f2d855ec7a870a0d2086a5f318 (diff) |
deps: update dependencies
Diffstat (limited to 'internal')
-rw-r--r-- | internal/rpc/client_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/rpc/client_test.go b/internal/rpc/client_test.go index 42b2d87e..b9465a4b 100644 --- a/internal/rpc/client_test.go +++ b/internal/rpc/client_test.go @@ -19,7 +19,7 @@ func TestNewClient_RpcServiceDisabled(t *testing.T) { c, err := rpc.NewClient("test/config_rpc_empty.yaml", nil) assert.Nil(t, c) - assert.EqualError(t, err, "rpc service not specified") + assert.EqualError(t, err, "rpc service not specified in the configuration. Tip: add\n rpc:\n\r listen: rr_rpc_address") } func TestNewClient_WrongRcpConfiguration(t *testing.T) { |