This is an automated email from the ASF dual-hosted git repository. kenhuuu pushed a commit to branch model-upgrade in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
commit a71a33d3b77eae935860766ab6379170b447f486 Author: Ken Hu <[email protected]> AuthorDate: Fri Jul 17 07:25:51 2026 -0700 Fix empty_bulklist typo in test_graphbinaryv4model.py CTR --- .../main/python/tests/unit/structure/io/test_graphbinaryv4model.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gremlin-python/src/main/python/tests/unit/structure/io/test_graphbinaryv4model.py b/gremlin-python/src/main/python/tests/unit/structure/io/test_graphbinaryv4model.py index 4ebc739584..0e4935a916 100644 --- a/gremlin-python/src/main/python/tests/unit/structure/io/test_graphbinaryv4model.py +++ b/gremlin-python/src/main/python/tests/unit/structure/io/test_graphbinaryv4model.py @@ -228,7 +228,7 @@ def test_out_direction(): def test_var_bulklist(): run_read("var-bulklist") -def test_var_bulklist(): +def test_empty_bulklist(): run_read("empty-bulklist") def test_single_byte_char(): @@ -315,4 +315,4 @@ def run_writeread(resource_name, comparator = None): assert comparator(model, round_tripped) else: assert model == read - assert model == round_tripped \ No newline at end of file + assert model == round_tripped
