Skip to content

Commit

Permalink
Fix typo in test output
Browse files Browse the repository at this point in the history
Signed-off-by: mevrin <matthieu.evrin@gmail.com>
  • Loading branch information
lekaf974 committed Mar 5, 2024
1 parent b5ab4f4 commit e56f49f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/provisioner/ironic/clients/features_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@ func TestAvailableFeatures_ChooseMicroversion(t *testing.T) {
want string
}{
{
name: fmt.Sprintf("MaxVesrion < %d return microvestion %s", 86, baseline),
name: fmt.Sprintf("MaxVersion < %d return microversion %s", 86, baseline),
feature: fields{
MaxVersion: 50,
},
want: baseline,
},
{
name: fmt.Sprintf("MaxVesrion = %d return %s", 86, microVersion),
name: fmt.Sprintf("MaxVersion = %d return %s", 86, microVersion),
feature: fields{
MaxVersion: 86,
},
want: microVersion,
},
{
name: fmt.Sprintf("MaxVesrion > %d return %s", 86, microVersion),
name: fmt.Sprintf("MaxVersion > %d return %s", 86, microVersion),
feature: fields{
MaxVersion: 100,
},
Expand Down

0 comments on commit e56f49f

Please sign in to comment.