mirror of
https://github.com/spf13/viper
synced 2025-05-07 20:57:18 +00:00
Fix failing TestBindPFlagsStringSlice
This commit is contained in:
parent
e08e06405f
commit
e6b430f29c
1 changed files with 1 additions and 1 deletions
|
@ -598,7 +598,7 @@ func TestBindPFlagsStringSlice(t *testing.T) {
|
||||||
Expected []string
|
Expected []string
|
||||||
Value string
|
Value string
|
||||||
}{
|
}{
|
||||||
{[]string{}, ""},
|
{[]string(nil), ""},
|
||||||
{[]string{"jeden"}, "jeden"},
|
{[]string{"jeden"}, "jeden"},
|
||||||
{[]string{"dwa", "trzy"}, "dwa,trzy"},
|
{[]string{"dwa", "trzy"}, "dwa,trzy"},
|
||||||
{[]string{"cztery", "piec , szesc"}, "cztery,\"piec , szesc\""}} {
|
{[]string{"cztery", "piec , szesc"}, "cztery,\"piec , szesc\""}} {
|
||||||
|
|
Loading…
Add table
Reference in a new issue