test: -debug=0 and -debug=none behave similarly to -nodebug

This commit is contained in:
Daniela Brozzoni
2025-02-10 17:47:39 +01:00
parent a8fedb36a7
commit 7afeaa2469

View File

@@ -99,8 +99,10 @@ class LoggingTest(BitcoinTestFramework):
match=ErrorMatch.PARTIAL_REGEX, match=ErrorMatch.PARTIAL_REGEX,
) )
self.log.info("Test that -nodebug clears previously specified debug options") self.log.info("Test that -nodebug,-debug=0,-debug=none clear previously specified debug options")
disable_debug_options = [ disable_debug_options = [
'-debug=0',
'-debug=none',
'-nodebug' '-nodebug'
] ]