Skip to content

Commit

Permalink
fix testcase
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Hoß <[email protected]>
  • Loading branch information
sebhoss committed Apr 21, 2024
1 parent 722b6e4 commit 431712c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/internal/generator/openapiv2_parser_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func TestKubernetesSchema(t *testing.T) {
templateSpec := templateProps["spec"].Value
templateSpecProps := templateSpec.Properties

assert.Equal(t, len(properties), 11, "properties")
assert.Equal(t, len(templateProps), 5, "templateProps")
assert.Equal(t, len(templateSpecProps), 8, "templateSpecProps")
assert.Equal(t, 11, len(properties), "properties")
assert.Equal(t, 5, len(templateProps), "templateProps")
assert.Equal(t, 9, len(templateSpecProps), "templateSpecProps")
}

0 comments on commit 431712c

Please sign in to comment.