aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--adapters/gtest/results.go1
-rw-r--r--cmd/sub/build.go4
2 files changed, 2 insertions, 3 deletions
diff --git a/adapters/gtest/results.go b/adapters/gtest/results.go
index f8c8a23..e5280e3 100644
--- a/adapters/gtest/results.go
+++ b/adapters/gtest/results.go
@@ -65,7 +65,6 @@ func decodeResults(r io.Reader) []planr.TestResult {
n := len(test.Failures)
decoded = append(decoded, planr.TestResult {
- Id: suite.Name + "_" + test.Name,
Pass: n == 0,
})
}
diff --git a/cmd/sub/build.go b/cmd/sub/build.go
index 19220d3..8108768 100644
--- a/cmd/sub/build.go
+++ b/cmd/sub/build.go
@@ -2,11 +2,11 @@ package sub
import (
"golang.flu0r1ne.net/planr"
- "golang.flu0r1ne.net/planr/adapters"
+ "golang.flu0r1ne.net/planr/adapters/gtest"
)
func Build(params []string) {
- gtestAdapter := adapters.GtestAdapter {}
+ gtestAdapter := gtest.GtestAdapter {}
r := planr.Runner{}
r.RegisterAdapter(&gtestAdapter)