aboutsummaryrefslogtreecommitdiff
path: root/tests/test_dl.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_dl.py')
-rw-r--r--tests/test_dl.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_dl.py b/tests/test_dl.py
index a15f397..1099ced 100644
--- a/tests/test_dl.py
+++ b/tests/test_dl.py
@@ -227,12 +227,12 @@ class TestBatchDownload:
assert caplog.record_tuples[1] == (
"wikiget.dl",
logging.DEBUG,
- "Made a new site connection",
+ "Making a new connection to commons.wikimedia.org",
)
assert caplog.record_tuples[3] == (
"wikiget.dl",
logging.DEBUG,
- "Reused an existing site connection",
+ "Reusing the existing connection to commons.wikimedia.org",
)
@patch("wikiget.dl.read_batch_file")