Skip to content

Commit

Permalink
Rename to match new Github name
Browse files Browse the repository at this point in the history
  • Loading branch information
njbennett committed Jul 12, 2019
1 parent dc8bff6 commit 28a6b97
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# custom-cats-reporters
# Honeycomb Ginkgo Reporter

## Getting Started
You should be able to get set up in less than 30 minutes.
Expand All @@ -16,8 +16,8 @@ Then, in your suite test file,
import this reporter and the honeycomb go library

```
"github.com/cloudfoundry/custom-cats-reporters/honeycomb"
"github.com/cloudfoundry/custom-cats-reporters/honeycomb/client"
"github.com/cloudfoundry/honeycomb-ginkgo-reporter/honeycomb"
"github.com/cloudfoundry/honeycomb-ginkgo-reporter/honeycomb/client"
"github.com/honeycombio/libhoney-go"
```

Expand Down
2 changes: 1 addition & 1 deletion honeycomb/client/clientfakes/fake_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion honeycomb/honeycomb_reporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"strings"

"github.com/cloudfoundry/custom-cats-reporters/honeycomb/client"
"github.com/cloudfoundry/honeycomb-ginkgo-reporter/honeycomb/client"
"github.com/onsi/ginkgo/config"
"github.com/onsi/ginkgo/types"
)
Expand Down
10 changes: 5 additions & 5 deletions honeycomb/honeycomb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package honeycomb_test
import (
"time"

"github.com/cloudfoundry/custom-cats-reporters/honeycomb"
"github.com/cloudfoundry/custom-cats-reporters/honeycomb/client/clientfakes"
"github.com/cloudfoundry/honeycomb-ginkgo-reporter/honeycomb"
"github.com/cloudfoundry/honeycomb-ginkgo-reporter/honeycomb/client/clientfakes"
. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/extensions/table"
"github.com/onsi/ginkgo/types"
Expand Down Expand Up @@ -181,9 +181,9 @@ var _ = Describe("Honeycomb Reporter", func() {

specEventArgs, _, _ := honeycombClient.SendEventArgsForCall(0)
Expect(specEventArgs).To(Equal(types.SuiteSummary{
SuiteDescription: "",
SuiteSucceeded: false,
SuiteID: "",
SuiteDescription: "",
SuiteSucceeded: false,
SuiteID: "",
NumberOfSpecsBeforeParallelization: 0,
NumberOfTotalSpecs: 0,
NumberOfSpecsThatWillBeRun: 0,
Expand Down

0 comments on commit 28a6b97

Please sign in to comment.