summaryrefslogtreecommitdiff
path: root/runner.go
diff options
context:
space:
mode:
Diffstat (limited to 'runner.go')
-rw-r--r--runner.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/runner.go b/runner.go
index f613d44..2d66dc6 100644
--- a/runner.go
+++ b/runner.go
@@ -108,9 +108,9 @@ func (r Runner) Build(tcs []TestCase) {
safeCd(r.dirs.Config())
}
-func (r Runner) Evaluate(tcs []TestCase) []TestCase {
+func (r Runner) Evaluate(tcs []TestCase) []TestResult {
testSets := r.groupByAdapter(tcs)
- results := make([]TestCase, 0)
+ results := make([]TestResult, 0)
for _, pair := range testSets {
adapter := pair.adapter