You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ly...@apache.org on 2022/05/30 23:50:24 UTC

[tinkerpop] branch 3.5-dev updated: updating pathing for cucumber versions

This is an automated email from the ASF dual-hosted git repository.

lyndonb pushed a commit to branch 3.5-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


The following commit(s) were added to refs/heads/3.5-dev by this push:
     new 4927388e0c updating pathing for cucumber versions
4927388e0c is described below

commit 4927388e0cbd01002b7a82b72856ad42ca01dcee
Author: Lyndon Bauto <ly...@bitquilltech.com>
AuthorDate: Mon May 30 16:48:33 2022 -0700

    updating pathing for cucumber versions
---
 gremlin-go/build/generate.groovy                  | 2 +-
 gremlin-go/driver/cucumber/cucumberSteps_test.go  | 2 +-
 gremlin-go/driver/cucumber/cucumberWorld.go       | 2 +-
 gremlin-go/driver/cucumber/gremlin.go             | 2 +-
 gremlin-go/driver/performance/performanceSuite.go | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/gremlin-go/build/generate.groovy b/gremlin-go/build/generate.groovy
index e1bab41e7e..601d4ac548 100644
--- a/gremlin-go/build/generate.groovy
+++ b/gremlin-go/build/generate.groovy
@@ -75,7 +75,7 @@ radishGremlinFile.withWriter('UTF-8') { Writer writer ->
         '\n' +
         'import (\n' +
         '\t \"errors\"\n' +
-        '\t \"github.com/apache/tinkerpop/gremlin-go/driver\"\n' +
+        '\t \"github.com/apache/tinkerpop/gremlin-go/v3/driver\"\n' +
         ')\n'
     )
 
diff --git a/gremlin-go/driver/cucumber/cucumberSteps_test.go b/gremlin-go/driver/cucumber/cucumberSteps_test.go
index d2bcb25252..7cb66df599 100644
--- a/gremlin-go/driver/cucumber/cucumberSteps_test.go
+++ b/gremlin-go/driver/cucumber/cucumberSteps_test.go
@@ -24,7 +24,7 @@ import (
 	"encoding/json"
 	"errors"
 	"fmt"
-	"github.com/apache/tinkerpop/gremlin-go/driver"
+	"github.com/apache/tinkerpop/gremlin-go/v3/driver"
 	"github.com/cucumber/godog"
 	"reflect"
 	"regexp"
diff --git a/gremlin-go/driver/cucumber/cucumberWorld.go b/gremlin-go/driver/cucumber/cucumberWorld.go
index a4e43303c3..2106e55806 100644
--- a/gremlin-go/driver/cucumber/cucumberWorld.go
+++ b/gremlin-go/driver/cucumber/cucumberWorld.go
@@ -21,7 +21,7 @@ package gremlingo
 
 import (
 	"fmt"
-	"github.com/apache/tinkerpop/gremlin-go/driver"
+	gremlingo "github.com/apache/tinkerpop/gremlin-go/v3/driver"
 	"github.com/cucumber/godog"
 	"os"
 	"reflect"
diff --git a/gremlin-go/driver/cucumber/gremlin.go b/gremlin-go/driver/cucumber/gremlin.go
index 8fa53b97bf..d4b384d6d9 100644
--- a/gremlin-go/driver/cucumber/gremlin.go
+++ b/gremlin-go/driver/cucumber/gremlin.go
@@ -26,7 +26,7 @@ package gremlingo
 
 import (
 	 "errors"
-	 "github.com/apache/tinkerpop/gremlin-go/driver"
+	 "github.com/apache/tinkerpop/gremlin-go/v3/driver"
 )
 
 var translationMap = map[string][]func(g *gremlingo.GraphTraversalSource, p map[string]interface{}) *gremlingo.GraphTraversal{
diff --git a/gremlin-go/driver/performance/performanceSuite.go b/gremlin-go/driver/performance/performanceSuite.go
index 4a5f9b6943..7319992b99 100644
--- a/gremlin-go/driver/performance/performanceSuite.go
+++ b/gremlin-go/driver/performance/performanceSuite.go
@@ -29,7 +29,7 @@ import (
 	"strconv"
 	"time"
 
-	"github.com/apache/tinkerpop/gremlin-go/driver"
+	"github.com/apache/tinkerpop/gremlin-go/v3/driver"
 )
 
 type ResultSet = gremlingo.ResultSet