Appveyor is not longer used however the test still requires to check for permissions including 666 as otherwise the tests fail on Windows
Fixes: #32576
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.
See the guideline for information on the review process.
If your review is incorrectly listed, please copy-paste <!–meta-tag:bot-skip–> into the comment that the bot should ignore.
157@@ -158,7 +158,7 @@ def test_tool_wallet_info(self):
158 #
159 # self.log.debug('Setting wallet file permissions to 400 (read-only)')
160 # os.chmod(self.wallet_path, stat.S_IRUSR)
161- # assert self.wallet_permissions() in ['400', '666'] # Sanity check. 666 because Appveyor.
162+ # assert self.wallet_permissions() in ['400', '666'] # Sanity check. 666 is for on Windows.
Appveyor is not longer used however the test still requires to check for
permissions including 666 as otherwise the tests fail on Windows