test(context): Change the StringSliceFlag to a pointer
StringSliceFlag needs to be a pointer, and not a struct. Also formatted the test. See: https://github.com/urfave/cli/pull/1126 for a description of the regression tested for. Signed-off-by: Ole Petter <ole.orhagen@northern.tech>
This commit is contained in:
parent
710c8f71c4
commit
48392103ce
@ -539,7 +539,7 @@ func TestCheckRequiredFlags(t *testing.T) {
|
|||||||
expectedAnError: true,
|
expectedAnError: true,
|
||||||
expectedErrorContents: []string{"Required flag \"names\" not set"},
|
expectedErrorContents: []string{"Required flag \"names\" not set"},
|
||||||
flags: []Flag{
|
flags: []Flag{
|
||||||
StringSliceFlag{Name: "names, n", Required: true},
|
&StringSliceFlag{Name: "names, n", Required: true},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user