Skip to content

Commit

Permalink
fix cherry pick inaccuracy
Browse files Browse the repository at this point in the history
  • Loading branch information
danielvegamyhre committed Feb 13, 2024
1 parent d237529 commit 1926986
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/jobset/v1alpha2/jobset_webhook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ func TestValidateCreate(t *testing.T) {
},
},
want: errors.Join(
fmt.Errorf(jobNameTooLongErrorMsg),
fmt.Errorf(subdomainTooLongErrMsg),
),
},
{
Expand Down Expand Up @@ -507,7 +507,7 @@ func TestValidateCreate(t *testing.T) {
},
},
want: errors.Join(
fmt.Errorf(subdomainTooLongErrMsg),
fmt.Errorf(jobNameTooLongErrorMsg),
),
},
{
Expand Down

0 comments on commit 1926986

Please sign in to comment.