Skip to content

Commit fc618c8

Browse files
committed
fix actual cursor name
1 parent fe0f6d3 commit fc618c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_atomic_cursor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ def test_atomic_cursor_python_cpp_work_stealing_cursor_created_by_py():
470470
cursor.store(0)
471471

472472
actual_name = q.get_shm_name()
473-
actual_cursor_name = cursor_shm.name
473+
actual_cursor_name = cursor_shm._name
474474

475475
# Start C++ consumer process
476476
cpp_consumer = find_cpp_executable("cpp_work_stealing_consumer")
@@ -558,7 +558,7 @@ def test_atomic_cursor_python_cpp_work_stealing_cursor_created_by_py():
558558
cursor.store(0)
559559

560560
actual_name = q.get_shm_name()
561-
actual_cursor_name = cursor_shm.name
561+
actual_cursor_name = cursor_shm._name
562562

563563
# Start C++ consumer process
564564
cpp_consumer = find_cpp_executable("cpp_work_stealing_consumer")

0 commit comments

Comments
 (0)