refactor: output config usages
parent
199259eb3d
commit
6e48f177c3
|
@ -8,5 +8,5 @@ type OutputConfig struct {
|
|||
}
|
||||
|
||||
func (o *OutputConfig) String() string {
|
||||
return fmt.Sprintf("%s://%s", o.Key, o.Options["path"])
|
||||
return fmt.Sprintf("%s://%s", o.Key, o.Path)
|
||||
}
|
||||
|
|
|
@ -302,22 +302,16 @@ func Test_parseOutputFlag(t *testing.T) {
|
|||
},
|
||||
want: []output.OutputConfig{
|
||||
{
|
||||
Key: "json",
|
||||
Options: map[string]string{
|
||||
"path": "result1.json",
|
||||
},
|
||||
Key: "json",
|
||||
Path: "result1.json",
|
||||
},
|
||||
{
|
||||
Key: "json",
|
||||
Options: map[string]string{
|
||||
"path": "result2.json",
|
||||
},
|
||||
Key: "json",
|
||||
Path: "result2.json",
|
||||
},
|
||||
{
|
||||
Key: "json",
|
||||
Options: map[string]string{
|
||||
"path": "result3.json",
|
||||
},
|
||||
Key: "json",
|
||||
Path: "result3.json",
|
||||
},
|
||||
},
|
||||
err: nil,
|
||||
|
|
Loading…
Reference in New Issue