Skip to content

Commit 197b540

Browse files
committed
QA: Expect PACKAGE_NAME rather than constant "Bitcoin Core"
1 parent e901404 commit 197b540

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/feature_settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def run_test(self):
2525

2626
# Assert default settings file was created
2727
self.stop_node(0)
28-
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."}
28+
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."}
2929
with settings.open() as fp:
3030
assert_equal(json.load(fp), default_settings)
3131

0 commit comments

Comments
 (0)