summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Palus <jpalus@fastmail.com>2023-05-12 01:44:13 +0200
committerDarshit Shah <git@darnir.net>2023-05-14 21:55:01 +0200
commit6ca59f4d609cf8f1ae91a47dedde1b8f3a0d46b9 (patch)
tree9889cb5abc791adf7f98710058bf69b1f8f1cc6d
parent27a832aee9c460357cf8893a44f4f72da655c300 (diff)
downloadwget-6ca59f4d609cf8f1ae91a47dedde1b8f3a0d46b9.tar.gz
* testenv/conf/expected_files.py: Ignore common.conf
Copyright-paperwork-exempt: Yes
-rw-r--r--testenv/conf/expected_files.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testenv/conf/expected_files.py b/testenv/conf/expected_files.py
index 65adb707..72146726 100644
--- a/testenv/conf/expected_files.py
+++ b/testenv/conf/expected_files.py
@@ -24,10 +24,10 @@ class ExpectedFiles:
snapshot = {}
for parent, dirs, files in os.walk('.'):
for name in files:
- # pubring.gpg, pubring.kbx, dirmngr.conf, gpg.conf will be created by libgpgme
+ # pubring.gpg, pubring.kbx, common.conf, dirmngr.conf, gpg.conf will be created by libgpgme
# if $HOME doesn't contain the .gnupg directory.
# setting $HOME to CWD (in base_test.py) breaks two Metalink tests, so we skip this file here.
- if name in [ 'pubring.gpg', 'pubring.kbx', 'dirmngr.conf', 'gpg.conf' ]:
+ if name in [ 'pubring.gpg', 'pubring.kbx', 'common.conf', 'dirmngr.conf', 'gpg.conf' ]:
continue
f = {'content': ''}