From 8834e4e86c851c4eb01a7e978cdbde5b3cbd24cc Mon Sep 17 00:00:00 2001 From: Max Edwards Date: Tue, 17 Feb 2026 22:24:20 +0000 Subject: [PATCH] test: remove appveyor reference in comment Appveyor is not longer used however the test still requires to check for permissions including 666 as otherwise the tests fail on Windows --- test/functional/tool_wallet.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/tool_wallet.py b/test/functional/tool_wallet.py index 9255b26166c..ecef5e13737 100755 --- a/test/functional/tool_wallet.py +++ b/test/functional/tool_wallet.py @@ -158,7 +158,7 @@ class ToolWalletTest(BitcoinTestFramework): # # self.log.debug('Setting wallet file permissions to 400 (read-only)') # os.chmod(self.wallet_path, stat.S_IRUSR) - # assert self.wallet_permissions() in ['400', '666'] # Sanity check. 666 because Appveyor. + # assert self.wallet_permissions() in ['400', '666'] # Sanity check. 666 on Windows. # shasum_before = self.wallet_shasum() timestamp_before = self.wallet_timestamp() self.log.debug('Wallet file timestamp before calling info: {}'.format(timestamp_before)) @@ -169,7 +169,7 @@ class ToolWalletTest(BitcoinTestFramework): self.log_wallet_timestamp_comparison(timestamp_before, timestamp_after) self.log.debug('Setting wallet file permissions back to 600 (read/write)') os.chmod(self.wallet_path, stat.S_IRUSR | stat.S_IWUSR) - assert self.wallet_permissions() in ['600', '666'] # Sanity check. 666 because Appveyor. + assert self.wallet_permissions() in ['600', '666'] # Sanity check. 666 on Windows. # # TODO: Wallet tool info should not write to the wallet file. # The following lines should be uncommented and the tests still succeed: