summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/python/test/test_off.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/python/test/test_off.py b/src/python/test/test_off.py
index 69bfa1f9..aea1941b 100644
--- a/src/python/test/test_off.py
+++ b/src/python/test/test_off.py
@@ -16,6 +16,6 @@ import pytest
def test_off_rw():
for dim in range(2, 6):
X = np.random.rand(123, dim)
- gd.write_points_to_off_file('rand.off', X)
- Y = gd.read_points_from_off_file('rand.off')
+ gd.write_points_to_off_file("rand.off", X)
+ Y = gd.read_points_from_off_file("rand.off")
assert Y == pytest.approx(X)