diff options
| author | Ben Woosley <[email protected]> | 2019-01-24 21:16:35 -0800 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2019-07-31 16:12:12 -0400 |
| commit | 68f546635d5de2ccfedadeabc7bc79e12e5eca6a (patch) | |
| tree | a3bb0ee43515e9a1b9523572cd28a6e6189df95c | |
| parent | Merge #16504: doc: Add release note for the deprecated totalFee option of bum... (diff) | |
| download | discoin-68f546635d5de2ccfedadeabc7bc79e12e5eca6a.tar.xz discoin-68f546635d5de2ccfedadeabc7bc79e12e5eca6a.zip | |
test: Fix “local variable 'e' is assigned to but never used”
flake8 F841 lints, as of flake8 3.6.0
| -rwxr-xr-x | test/functional/feature_assumevalid.py | 2 | ||||
| -rwxr-xr-x | test/functional/test_framework/test_framework.py | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/test/functional/feature_assumevalid.py b/test/functional/feature_assumevalid.py index b7814bf33..420a3a768 100755 --- a/test/functional/feature_assumevalid.py +++ b/test/functional/feature_assumevalid.py @@ -72,7 +72,7 @@ class AssumeValidTest(BitcoinTestFramework): break try: p2p_conn.send_message(msg_block(self.blocks[i])) - except IOError as e: + except IOError: assert not p2p_conn.is_connected break diff --git a/test/functional/test_framework/test_framework.py b/test/functional/test_framework/test_framework.py index aa674f9eb..6d580ded4 100755 --- a/test/functional/test_framework/test_framework.py +++ b/test/functional/test_framework/test_framework.py @@ -192,18 +192,18 @@ class BitcoinTestFramework(metaclass=BitcoinTestMetaClass): self.setup_network() self.run_test() success = TestStatus.PASSED - except JSONRPCException as e: + except JSONRPCException: self.log.exception("JSONRPC error") except SkipTest as e: self.log.warning("Test Skipped: %s" % e.message) success = TestStatus.SKIPPED - except AssertionError as e: + except AssertionError: self.log.exception("Assertion failed") - except KeyError as e: + except KeyError: self.log.exception("Key error") - except Exception as e: + except Exception: self.log.exception("Unexpected exception caught during testing") - except KeyboardInterrupt as e: + except KeyboardInterrupt: self.log.warning("Exiting after keyboard interrupt") if success == TestStatus.FAILED and self.options.pdbonfailure: |