Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions odize.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ var (
ErrTestOptionNotAllowedInCI = errors.New("test option 'Only' not allowed in CI environment")
)

// NewGroup - Create a new test group.
// NewGroup - Create a new test group.
//
// If t he ODIZE_TAGS environment variable is set, then only tests with matching tags will be run.
// If the ODIZE_TAGS environment variable is set, then only tests with matching tags will be run.
func NewGroup(t *testing.T, tags *[]string) *TestGroup {
groupTags := tags
if groupTags == nil {
Expand Down