mirror of
https://github.com/spf13/viper
synced 2025-05-07 04:37:20 +00:00
Fix failing TestBindPFlagsStringSlice
After mitchelh/mapstructure has been updated, the expected test result needs to be updated to the actual returned result. Closes: spf13/viper#579.
This commit is contained in:
parent
ae103d7e59
commit
1b236c9599
1 changed files with 1 additions and 1 deletions
|
@ -617,7 +617,7 @@ func TestBindPFlagsStringSlice(t *testing.T) {
|
|||
Expected []string
|
||||
Value string
|
||||
}{
|
||||
{[]string{}, ""},
|
||||
{[]string(nil), ""},
|
||||
{[]string{"jeden"}, "jeden"},
|
||||
{[]string{"dwa", "trzy"}, "dwa,trzy"},
|
||||
{[]string{"cztery", "piec , szesc"}, "cztery,\"piec , szesc\""},
|
||||
|
|
Loading…
Add table
Reference in a new issue