Skip to content

Commit 311f56c

Browse files
committed
Fix tests for load_dotenv with new verbose option
1 parent e3f33e8 commit 311f56c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎tests/test_core.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
def test_warns_if_file_does_not_exist():
1212
with warnings.catch_warnings(record=True) as w:
13-
load_dotenv('.does_not_exist')
13+
load_dotenv('.does_not_exist', verbose=True)
1414

1515
assert len(w) == 1
1616
assert w[0].category is UserWarning

0 commit comments

Comments
 (0)