Skip to content

Commit bec5e13

Browse files
committed
rename boundary polylines files to boundary-polyline- prefix
1 parent 457473d commit bec5e13

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

tests/dflowfm/polyfile/test_polyline_models.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def test_with_label(polylines_dir: Path):
1515
0.00000000000000000 0.00000000000000000 #zee
1616
0.00000000000000000 2.00000000000000000 #zee
1717
"""
18-
path = polylines_dir.joinpath("polyline-no-z-with-label.pli")
18+
path = polylines_dir.joinpath("boundary-polyline-no-z-with-label.pli")
1919
polyline = PolyFile(path)
2020
assert polyline.has_z_values is False
2121
assert polyline.filepath == path
@@ -30,7 +30,7 @@ def test_without_z(polylines_dir: Path):
3030
-80 -50
3131
-80 550
3232
"""
33-
path = polylines_dir.joinpath("polyline-no-z-no-label.pli")
33+
path = polylines_dir.joinpath("boundary-polyline-no-z-no-label.pli")
3434
polyline = PolyFile(path)
3535
assert polyline.has_z_values is False
3636
assert polyline.filepath == path
@@ -49,7 +49,7 @@ def test_with_z_and_pli_extension(polylines_dir: Path):
4949
0.00000000000000000 0.00000000000000000 5
5050
0.00000000000000000 2.00000000000000000 5
5151
"""
52-
path = polylines_dir.joinpath("polyline-with-z-no-label.pli")
52+
path = polylines_dir.joinpath("boundary-polyline-with-z-no-label.pli")
5353
polyline = PolyFile(path)
5454
assert polyline.has_z_values is False
5555
assert polyline.filepath == path
@@ -69,6 +69,6 @@ def test_with_z_and_pliz_extension(polylines_dir: Path):
6969
0.00000000000000000 0.00000000000000000 5
7070
0.00000000000000000 2.00000000000000000 5
7171
"""
72-
path = polylines_dir.joinpath("polyline-with-z-no-label.pliz")
72+
path = polylines_dir.joinpath("boundary-polyline-with-z-no-label.pliz")
7373
with pytest.raises(ValueError):
7474
PolyFile(path)

0 commit comments

Comments
 (0)