diff --git a/test/e2e/framework/framework.go b/test/e2e/framework/framework.go index e29e0edf58e..954becb63f3 100644 --- a/test/e2e/framework/framework.go +++ b/test/e2e/framework/framework.go @@ -66,7 +66,7 @@ var ( // // This can be used by extensions of the core framework to modify // settings in the framework instance or to add additional callbacks - // with gingko.BeforeEach/AfterEach/DeferCleanup. + // with ginkgo.BeforeEach/AfterEach/DeferCleanup. // // When a test runs, functions will be invoked in this order: // - BeforeEaches defined by tests before f.NewDefaultFramework diff --git a/test/e2e/framework/ginkgowrapper.go b/test/e2e/framework/ginkgowrapper.go index 0a9119beed6..1e1417ea7b6 100644 --- a/test/e2e/framework/ginkgowrapper.go +++ b/test/e2e/framework/ginkgowrapper.go @@ -148,7 +148,7 @@ func ConformanceIt(args ...interface{}) bool { // It is a wrapper around [ginkgo.It] which supports framework With* labels as // optional arguments in addition to those already supported by ginkgo itself, -// like [ginkgo.Label] and [gingko.Offset]. +// like [ginkgo.Label] and [ginkgo.Offset]. // // Text and arguments may be mixed. The final text is a concatenation // of the text arguments and special tags from the With functions. @@ -163,7 +163,7 @@ func (f *Framework) It(args ...interface{}) bool { // Describe is a wrapper around [ginkgo.Describe] which supports framework // With* labels as optional arguments in addition to those already supported by -// ginkgo itself, like [ginkgo.Label] and [gingko.Offset]. +// ginkgo itself, like [ginkgo.Label] and [ginkgo.Offset]. // // Text and arguments may be mixed. The final text is a concatenation // of the text arguments and special tags from the With functions. @@ -178,7 +178,7 @@ func (f *Framework) Describe(args ...interface{}) bool { // Context is a wrapper around [ginkgo.Context] which supports framework With* // labels as optional arguments in addition to those already supported by -// ginkgo itself, like [ginkgo.Label] and [gingko.Offset]. +// ginkgo itself, like [ginkgo.Label] and [ginkgo.Offset]. // // Text and arguments may be mixed. The final text is a concatenation // of the text arguments and special tags from the With functions. diff --git a/test/e2e/framework/internal/unittests/bugs/bugs.go b/test/e2e/framework/internal/unittests/bugs/bugs.go index dac80ca9a03..a70e042f892 100644 --- a/test/e2e/framework/internal/unittests/bugs/bugs.go +++ b/test/e2e/framework/internal/unittests/bugs/bugs.go @@ -132,7 +132,7 @@ ERROR: some/relative/path/buggy.go:200: with spaces ` // Used by unittests/list-labels. - ListLabelsOutput = `The following labels can be used with 'gingko run --label-filter': + ListLabelsOutput = `The following labels can be used with 'ginkgo run --label-filter': Alpha Beta Conformance diff --git a/test/e2e/framework/test_context.go b/test/e2e/framework/test_context.go index 8a0af062dfe..3f1622dc877 100644 --- a/test/e2e/framework/test_context.go +++ b/test/e2e/framework/test_context.go @@ -647,7 +647,7 @@ func listTestInformation(report ginkgo.Report) { labels.Insert(spec.Labels()...) } } - fmt.Fprintf(Output, "The following labels can be used with 'gingko run --label-filter':\n%s%s\n\n", indent, strings.Join(sets.List(labels), "\n"+indent)) + fmt.Fprintf(Output, "The following labels can be used with 'ginkgo run --label-filter':\n%s%s\n\n", indent, strings.Join(sets.List(labels), "\n"+indent)) } if TestContext.listTests { leafs := make([][]string, 0, len(report.SpecReports)) diff --git a/test/e2e/storage/persistent_volumes-local.go b/test/e2e/storage/persistent_volumes-local.go index 20d9c4ac66d..130afcb776b 100644 --- a/test/e2e/storage/persistent_volumes-local.go +++ b/test/e2e/storage/persistent_volumes-local.go @@ -184,7 +184,7 @@ var _ = utils.SIGDescribe("PersistentVolumes-local", func() { for tempTestVolType := range setupLocalVolumeMap { - // New variable required for gingko test closures + // New variable required for ginkgo test closures testVolType := tempTestVolType args := []interface{}{fmt.Sprintf("[Volume type: %s]", testVolType)} if testVolType == GCELocalSSDVolumeType {