We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5258395 commit 2788383Copy full SHA for 2788383
tests/test_zip_imports.py
@@ -77,7 +77,7 @@ def test_load_dotenv_outside_zip_file_when_called_in_zipfile(tmp_path):
77
],
78
)
79
dotenv_path = tmp_path / ".env"
80
- dotenv_path.write_bytes(b"A=B")
+ dotenv_path.write_bytes(b"A=x")
81
code_path = tmp_path / "code.py"
82
code_path.write_text(
83
textwrap.dedent(
@@ -102,4 +102,4 @@ def test_load_dotenv_outside_zip_file_when_called_in_zipfile(tmp_path):
102
text=True,
103
104
105
- assert result.stdout == "B\n"
+ assert result.stdout == "x\n"
0 commit comments