aboutsummaryrefslogtreecommitdiff
path: root/test/functional
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2024-06-17 14:10:53 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2024-06-19 14:59:31 +0000
commit197b5404b0f4a1d6e989000845b45c8bd24e0bc6 (patch)
treed2f7efa28e0ec938c74bee5781059c97b7fad498 /test/functional
parente9014042a6bed8c16cc9a31fc35cb709d4b3c766 (diff)
QA: Expect PACKAGE_NAME rather than constant "Bitcoin Core"
Diffstat (limited to 'test/functional')
-rwxr-xr-xtest/functional/feature_settings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/feature_settings.py b/test/functional/feature_settings.py
index 0214e781de..1cd0aeabd3 100755
--- a/test/functional/feature_settings.py
+++ b/test/functional/feature_settings.py
@@ -25,7 +25,7 @@ class SettingsTest(BitcoinTestFramework):
# Assert default settings file was created
self.stop_node(0)
- default_settings = {"_warning_": "This file is automatically generated and updated by Bitcoin Core. Please do not edit this file while the node is running, as any changes might be ignored or overwritten."}
+ default_settings = {"_warning_": f"This file is automatically generated and updated by {self.config['environment']['PACKAGE_NAME']}. Please do not edit this file while the node is running, as any changes might be ignored or overwritten."}
with settings.open() as fp:
assert_equal(json.load(fp), default_settings)