Skip to content

Commit f8641cc

Browse files
committed
fix
1 parent d0462e0 commit f8641cc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/test_polars_integration.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def cpp_lib():
171171
def test_create_array_in_cpp(cpp_lib):
172172
"""Test creating an array in C++ and importing to Python/Polars."""
173173
print("\n" + "=" * 70)
174-
print("Test 1: C++ Python (Create array in C++, import to Polars)")
174+
print("Test 1: C++ -> Python (Create array in C++, import to Polars)")
175175
print("=" * 70)
176176

177177
lib = cpp_lib
@@ -220,7 +220,7 @@ def test_create_array_in_cpp(cpp_lib):
220220
def test_polars_to_cpp(cpp_lib):
221221
"""Test exporting Polars data to C++."""
222222
print("\n" + "=" * 70)
223-
print("Test 2: Python C++ (Export Polars to C++)")
223+
print("Test 2: Python -> C++ (Export Polars to C++)")
224224
print("=" * 70)
225225

226226
lib = cpp_lib
@@ -254,9 +254,9 @@ def test_polars_to_cpp(cpp_lib):
254254

255255

256256
def test_roundtrip(cpp_lib):
257-
"""Test round-trip: Python C++ Python."""
257+
"""Test round-trip: Python -> C++ -> Python."""
258258
print("\n" + "=" * 70)
259-
print("Test 3: Round-trip (Python C++ Python)")
259+
print("Test 3: Round-trip (Python -> C++ -> Python)")
260260
print("=" * 70)
261261

262262
lib = cpp_lib

0 commit comments

Comments
 (0)