Skip to content

Commit

Permalink
fix e2e
Browse files Browse the repository at this point in the history
Signed-off-by: zhangzujian <[email protected]>
  • Loading branch information
zhangzujian committed Feb 18, 2024
1 parent e332a16 commit 15d0eaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/framework/framework.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,9 @@ func OrderedDescribe(text string, body func()) bool {
// ConformanceIt is wrapper function for ginkgo It.
// Adds "[Conformance]" tag and makes static analysis easier.
func ConformanceIt(text string, body interface{}) bool {
return ginkgo.It(text+" [Conformance]", ginkgo.Offset(1), body)
return ginkgo.It(text, ginkgo.Offset(1), body, framework.WithConformance())
}

func CorruptiveIt(text string, body interface{}) bool {
return ginkgo.It(text+" [Corruptive]", ginkgo.Offset(1), body)
return ginkgo.It(text, ginkgo.Offset(1), body, framework.WithDisruptive())
}

0 comments on commit 15d0eaa

Please sign in to comment.