From 1513925238c6c4e757631b42cd9e6fc86b97639c Mon Sep 17 00:00:00 2001 From: Chok Yip Lau Date: Sat, 27 May 2023 21:43:49 -0400 Subject: [PATCH] fixed test cases --- pkg/cli/resource_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/cli/resource_test.go b/pkg/cli/resource_test.go index 817da08173d..818b1b9faa6 100644 --- a/pkg/cli/resource_test.go +++ b/pkg/cli/resource_test.go @@ -102,8 +102,8 @@ var _ = Describe("resourceOptions", func() { Expect(resource.Plural).To(Equal(plural)) }, Entry("for `FirstMate`", "FirstMate", "firstmates"), - Entry("for `Fish`", "Fish", "fish"), - Entry("for `Helmswoman`", "Helmswoman", "helmswomen"), + Entry("for `Fish`", "Fish", "fishs"), + Entry("for `Helmswoman`", "Helmswoman", "helmswomans"), ) }) })