Skip to content

Commit

Permalink
Add missing description prop to TestSuite model
Browse files Browse the repository at this point in the history
  • Loading branch information
nigogo committed Nov 18, 2024
1 parent ef75eaa commit 39b9024
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions internal/model/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ func (tsr TestSuiteRun) Copy() TestSuiteRun {
}

return tsrCopy

}

func (t TestSuiteRun) ShouldRetry(tr TestRun) bool {
Expand Down Expand Up @@ -294,10 +293,11 @@ type TestSuite struct {
// TestRetries is the amount of times a test is retried when failing.
MaxTestAttempts int
// Namespace allows grouping of test suites, e.g. by team name.
Namespace string
Setup func() error
Teardown func() error
Tests map[string]TestFunc
Namespace string
Setup func() error
Description string
Teardown func() error
Tests map[string]TestFunc
// lock *sync.Mutex
}

Expand Down

0 comments on commit 39b9024

Please sign in to comment.