diff options
author | Dmitry Patsura <[email protected]> | 2019-06-14 12:28:56 +0300 |
---|---|---|
committer | Dmitry Patsura <[email protected]> | 2019-06-14 12:28:56 +0300 |
commit | ac126193fb36fdf248336fa433cbd13602f2ae75 (patch) | |
tree | a85abba72b65134a067f4f799b5e1d88a5101d3b /service/rpc | |
parent | a612f9d4ac8d2f5659a2e984067baf5a11fd6c2a (diff) |
Feature: Add tests for CreateListener
Diffstat (limited to 'service/rpc')
-rw-r--r-- | service/rpc/config_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/rpc/config_test.go b/service/rpc/config_test.go index 6cf63eea..af261698 100644 --- a/service/rpc/config_test.go +++ b/service/rpc/config_test.go @@ -71,7 +71,7 @@ func Test_Config_Error(t *testing.T) { ln, err := cfg.Listener() assert.Nil(t, ln) assert.Error(t, err) - assert.Equal(t, "invalid socket DSN (tcp://:6001, unix://file.sock)", err.Error()) + assert.Equal(t, "Invalid DSN (tcp://:6001, unix://file.sock)", err.Error()) } func Test_Config_ErrorMethod(t *testing.T) { |