This is an automated email from the ASF dual-hosted git repository.
colegreer pushed a commit to branch master-http
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
The following commit(s) were added to refs/heads/master-http by this push:
new 997b612e5d Fix console integration tests (#2759)
997b612e5d is described below
commit 997b612e5d725b6f7376d36ccaa46e4cf54c14ea
Author: Cole Greer <[email protected]>
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