Skip to content

Commit

Permalink
fix python test after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Cole-Greer committed Dec 5, 2024
1 parent e4b048c commit 25541fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gremlin-python/src/main/python/tests/driver/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def test_client_gremlin_lang_request_options_with_binding(client):
g = GraphTraversalSource(Graph(), TraversalStrategies())
# Note that bindings for constructed traversals is done via Parameter only
t = g.with_('language', 'gremlin-lang').V(GValue('x', [1, 2, 3])).count()
request_opts = DriverRemoteConnection.extract_request_options(t.gremlin_lang)
request_opts = {'language': 'gremlin-lang', 'params': {'x': [1, 2, 3]}}
message = create_basic_request_message(t)
result_set = client.submit(message, request_options=request_opts)
assert result_set.all().result()[0] == 3
Expand Down

0 comments on commit 25541fd

Please sign in to comment.