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

kenhuuu pushed a commit to branch master-http-final
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 53e929b698e5a1abeaea8240717125455cfdadf2
Author: Cole Greer <112986082+cole-gr...@users.noreply.github.com>
AuthorDate: Wed Sep 4 13:09:07 2024 -0700

    Fix console integration tests (#2759)
    
    The gremlin console integration tests have been failing due changes in the 
plugin activation text in the console header. This commit fixes the tests by 
updating the expected text from "tinkerpop.server" to "tinkerpop.remote"
---
 gremlin-console/src/test/python/tests/test_console.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gremlin-console/src/test/python/tests/test_console.py 
b/gremlin-console/src/test/python/tests/test_console.py
index b40b414532..194fb856ab 100644
--- a/gremlin-console/src/test/python/tests/test_console.py
+++ b/gremlin-console/src/test/python/tests/test_console.py
@@ -175,9 +175,9 @@ class TestConsole(object):
     def _expect_gremlin_header(child):
         # skip/read the Gremlin graphics
         child.expect("\r\n")
-        child.expect(["plugin activated: tinkerpop.server", "plugin activated: 
tinkerpop.utilities", "plugin activated: tinkerpop.tinkergraph"])
-        child.expect(["plugin activated: tinkerpop.server", "plugin activated: 
tinkerpop.utilities", "plugin activated: tinkerpop.tinkergraph"])
-        child.expect(["plugin activated: tinkerpop.server", "plugin activated: 
tinkerpop.utilities", "plugin activated: tinkerpop.tinkergraph"])
+        child.expect(["plugin activated: tinkerpop.remote", "plugin activated: 
tinkerpop.utilities", "plugin activated: tinkerpop.tinkergraph"])
+        child.expect(["plugin activated: tinkerpop.remote", "plugin activated: 
tinkerpop.utilities", "plugin activated: tinkerpop.tinkergraph"])
+        child.expect(["plugin activated: tinkerpop.remote", "plugin activated: 
tinkerpop.utilities", "plugin activated: tinkerpop.tinkergraph"])
         TestConsole._expect_prompt(child)
 
     @staticmethod

Reply via email to