2626
2727def test_maybe_make ():
2828 with TemporaryDirectory () as tmpdir :
29-
3029 test_dir = pathlib .Path (tmpdir ) / "maybe_make"
3130
3231 assert test_dir .exists () is False
@@ -55,7 +54,6 @@ def test_maybe_make():
5554
5655def test_maybe_make_pathplus ():
5756 with TemporaryDirectory () as tmpdir :
58-
5957 test_dir = PathPlus (tmpdir ) / "maybe_make"
6058
6159 assert test_dir .exists () is False
@@ -84,7 +82,6 @@ def test_maybe_make_pathplus():
8482
8583def test_maybe_make_string ():
8684 with TemporaryDirectory () as tmpdir :
87-
8885 test_dir = pathlib .Path (tmpdir ) / "maybe_make"
8986
9087 assert test_dir .exists () is False
@@ -113,7 +110,6 @@ def test_maybe_make_string():
113110
114111def test_maybe_make_parents ():
115112 with TemporaryDirectory () as tmpdir :
116-
117113 test_dir = pathlib .Path (tmpdir ) / "maybe_make" / "child1" / "child2"
118114
119115 assert test_dir .exists () is False
@@ -131,7 +127,6 @@ def test_maybe_make_parents():
131127
132128def test_maybe_make_parents_pathplus ():
133129 with TemporaryDirectory () as tmpdir :
134-
135130 test_dir = PathPlus (tmpdir ) / "maybe_make" / "child1" / "child2"
136131
137132 assert test_dir .exists () is False
0 commit comments