Skip to content

Commit 2788383

Browse files
committed
WIP: fixup
1 parent 5258395 commit 2788383

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_zip_imports.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def test_load_dotenv_outside_zip_file_when_called_in_zipfile(tmp_path):
7777
],
7878
)
7979
dotenv_path = tmp_path / ".env"
80-
dotenv_path.write_bytes(b"A=B")
80+
dotenv_path.write_bytes(b"A=x")
8181
code_path = tmp_path / "code.py"
8282
code_path.write_text(
8383
textwrap.dedent(
@@ -102,4 +102,4 @@ def test_load_dotenv_outside_zip_file_when_called_in_zipfile(tmp_path):
102102
text=True,
103103
)
104104

105-
assert result.stdout == "B\n"
105+
assert result.stdout == "x\n"

0 commit comments

Comments
 (0)