diff options
author | merge-script <fanquake@gmail.com> | 2024-06-24 15:17:27 +0100 |
---|---|---|
committer | merge-script <fanquake@gmail.com> | 2024-06-24 15:17:27 +0100 |
commit | a57da5e01402fe143c8cd74e0e6ef15bbf85e641 (patch) | |
tree | a70bc8640aa448a00cc63dbfecdd9b7a281a9175 | |
parent | aef5ac7f2c4e160c0bdea89fee1cc70131d83eb8 (diff) | |
parent | 197b5404b0f4a1d6e989000845b45c8bd24e0bc6 (diff) |
Merge bitcoin/bitcoin#30308: QA: Expect PACKAGE_NAME rather than constant "Bitcoin Core"
197b5404b0f4a1d6e989000845b45c8bd24e0bc6 QA: Expect PACKAGE_NAME rather than constant "Bitcoin Core" (Luke Dashjr)
Pull request description:
Followup to #29144
ACKs for top commit:
kevkevinpal:
ACK [197b540](https://github.com/bitcoin/bitcoin/pull/30308/commits/197b5404b0f4a1d6e989000845b45c8bd24e0bc6)
tdb3:
ACK 197b5404b0f4a1d6e989000845b45c8bd24e0bc6
Tree-SHA512: 6a2c7f7da56effa7e3eba1d103b1b4442d74a21f2ba588564cddd6d61a46c3721bf0942d4ac947ecbbbfe476501ab7b03a8414d7d0840ce9106b056811583010
-rwxr-xr-x | test/functional/feature_settings.py | 2 |
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) |