Skip to content

Commit

Permalink
rm version checks
Browse files Browse the repository at this point in the history
  • Loading branch information
YOU54F committed Feb 24, 2024
1 parent 72471cd commit 08d8236
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions examples/protobuf-message/protobuf_provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import (
"github.com/pact-foundation/pact-go/v2/message"
"github.com/pact-foundation/pact-go/v2/models"
"github.com/pact-foundation/pact-go/v2/provider"
pactversion "github.com/pact-foundation/pact-go/v2/version"
"github.com/stretchr/testify/assert"
)

Expand All @@ -26,7 +25,7 @@ func TestPluginMessageProvider(t *testing.T) {
err := pactlog.SetLogLevel("INFO")
assert.NoError(t, err)

pactversion.CheckVersion()
// pactversion.CheckVersion()

verifier := provider.NewVerifier()

Expand Down
3 changes: 1 addition & 2 deletions examples/provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import (
"github.com/pact-foundation/pact-go/v2/message"
"github.com/pact-foundation/pact-go/v2/models"
"github.com/pact-foundation/pact-go/v2/provider"
"github.com/pact-foundation/pact-go/v2/version"
"github.com/stretchr/testify/assert"
)

Expand All @@ -28,7 +27,7 @@ var stateHandlerCalled = false

func TestV3HTTPProvider(t *testing.T) {
log.SetLogLevel("INFO")
version.CheckVersion()
// version.CheckVersion()

// Start provider API in the background
go startServer()
Expand Down

0 comments on commit 08d8236

Please sign in to comment.