From bf37ad9dafe5af6c08f66b29331bd92f1a812673 Mon Sep 17 00:00:00 2001 From: Furkan Sahin Date: Thu, 5 Aug 2021 15:59:09 -0500 Subject: --amend --- adapters/gtest/results.go | 1 - cmd/sub/build.go | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/adapters/gtest/results.go b/adapters/gtest/results.go index f1033f2..d5b034e 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 e2796ee..b86bd98 100644 --- a/cmd/sub/build.go +++ b/cmd/sub/build.go @@ -2,11 +2,11 @@ package sub import ( "golang.furkistan.com/planr" - "golang.furkistan.com/planr/adapters" + "golang.furkistan.com/planr/adapters/gtest" ) func Build(params []string) { - gtestAdapter := adapters.GtestAdapter {} + gtestAdapter := gtest.GtestAdapter {} r := planr.Runner{} r.RegisterAdapter(>estAdapter) -- cgit v1.2.3