Skip to content

Commit 00e46b7

Browse files
committed
Try to fix windows test
1 parent abb9cde commit 00e46b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/snippets/stdlib_os.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
class TestWithTempDir():
4242
def __enter__(self):
4343
if os.name == "nt":
44-
base_folder = os.environ["%TEMP%"]
44+
base_folder = os.environ["TEMP"]
4545
else:
4646
base_folder = "/tmp"
4747
name = base_folder + os.sep + "test_os"

0 commit comments

Comments
 (0)