Skip to content

Commit

Permalink
fix: spacing in noflag commands
Browse files Browse the repository at this point in the history
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
  • Loading branch information
kbdharun committed Dec 16, 2023
1 parent cf3eaeb commit 34616f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ type testCases struct {

var test = []testCases{
{testModule{"Single Package, Single Flag", "dnf", []string{"--verbose"}, []string{"bash"}}, "dnf install -y --verbose bash"},
{testModule{"Single Package, No Flag", "dnf", []string{""}, []string{"bash"}}, "dnf install -y bash"},
{testModule{"Multiple Packages, No Flag", "dnf", []string{""}, []string{"bash", "fish"}}, "dnf install -y bash fish"},
{testModule{"Single Package, No Flag", "dnf", []string{""}, []string{"bash"}}, "dnf install -y bash"},
{testModule{"Multiple Packages, No Flag", "dnf", []string{""}, []string{"bash", "fish"}}, "dnf install -y bash fish"},
{testModule{"Multiple Packages, Multiple Flags", "dnf", []string{"--verbose", "--best"}, []string{"bash", "fish"}}, "dnf install -y --verbose --best bash fish"},
}

Expand Down

0 comments on commit 34616f2

Please sign in to comment.