Skip to content

Commit

Permalink
Fix TestPluginType_IsKnown unit test (#4802)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-zuyev committed Sep 18, 2020
1 parent 9fb4e81 commit 7b4eb4a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/skaffold/build/jib/jib_test.go
Expand Up @@ -154,9 +154,9 @@ func TestPluginType_IsKnown(t *testing.T) {
}{
{JibMaven, true},
{JibGradle, true},
{PluginType(0), false},
{PluginType(-1), false},
{PluginType(3), false},
{PluginType("ant"), false},
{PluginType("make"), false},
{PluginType(""), false},
}
for _, test := range tests {
testutil.Run(t, string(test.value), func(t *testutil.T) {
Expand Down

0 comments on commit 7b4eb4a

Please sign in to comment.