You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by fl...@apache.org on 2018/06/14 16:07:17 UTC

tinkerpop git commit: Fix integration test by using correct traversal source TINKREPOP-1836

Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1836 c2dfa029d -> bc5e3a8ee


Fix integration test by using correct traversal source TINKREPOP-1836


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/bc5e3a8e
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/bc5e3a8e
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/bc5e3a8e

Branch: refs/heads/TINKERPOP-1836
Commit: bc5e3a8ee24217a5a73caea87f7f6542db009ad8
Parents: c2dfa02
Author: Florian Hockmann <fh...@florian-hockmann.de>
Authored: Thu Jun 14 18:07:09 2018 +0200
Committer: Florian Hockmann <fh...@florian-hockmann.de>
Committed: Thu Jun 14 18:07:09 2018 +0200

----------------------------------------------------------------------
 .../test/Gremlin.Net.Template.IntegrationTest/ServiceTests.cs     | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/bc5e3a8e/gremlin-dotnet/test/Gremlin.Net.Template.IntegrationTest/ServiceTests.cs
----------------------------------------------------------------------
diff --git a/gremlin-dotnet/test/Gremlin.Net.Template.IntegrationTest/ServiceTests.cs b/gremlin-dotnet/test/Gremlin.Net.Template.IntegrationTest/ServiceTests.cs
index 8bf332f..91ce491 100644
--- a/gremlin-dotnet/test/Gremlin.Net.Template.IntegrationTest/ServiceTests.cs
+++ b/gremlin-dotnet/test/Gremlin.Net.Template.IntegrationTest/ServiceTests.cs
@@ -33,13 +33,14 @@ namespace Gremlin.Net.Template.IntegrationTest
     {
         private const string TestHost = "localhost";
         private const int TestPort = 45940;
+        private const string TestTraversalSource = "gmodern";
 
         [Fact]
         public void ShouldReturnExpectedCreators()
         {
             using (var client = CreateClient())
             {
-                var g = new Graph().Traversal().WithRemote(new DriverRemoteConnection(client));
+                var g = new Graph().Traversal().WithRemote(new DriverRemoteConnection(client, TestTraversalSource));
                 var service = new Service(g);
             
                 var creators = service.FindCreatorsOfSoftware("lop");