summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Glisse <marc.glisse@inria.fr>2022-11-11 19:03:54 +0100
committerMarc Glisse <marc.glisse@inria.fr>2022-11-11 19:03:54 +0100
commitf4f930169fbf2db2707d69b334cfe5b941c64350 (patch)
tree651bbfb9d791c73a20d150b9c211dee6dce918ad
parent2d5039b7eeb16116ab859076aa0a93f092250d88 (diff)
black
-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)