diff options
| author | Hennadii Stepanov <[email protected]> | 2020-01-08 00:53:40 +0200 |
|---|---|---|
| committer | Hennadii Stepanov <[email protected]> | 2020-01-08 00:53:40 +0200 |
| commit | 8b2f471a1bff753cc4df29805ef38c3623f64f6e (patch) | |
| tree | 49656db6f12b483980444f84f6075307e071a509 /test/functional/feature_config_args.py | |
| parent | Merge #17857: scripts: fix symbol-check & security-check argument passing (diff) | |
| download | discoin-8b2f471a1bff753cc4df29805ef38c3623f64f6e.tar.xz discoin-8b2f471a1bff753cc4df29805ef38c3623f64f6e.zip | |
qa: Fix double-negative arg test
Diffstat (limited to 'test/functional/feature_config_args.py')
| -rwxr-xr-x | test/functional/feature_config_args.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/feature_config_args.py b/test/functional/feature_config_args.py index 801209b1c..d1a4cda7a 100755 --- a/test/functional/feature_config_args.py +++ b/test/functional/feature_config_args.py @@ -79,7 +79,7 @@ class ConfArgsTest(BitcoinTestFramework): conf.write('') # clear def test_log_buffer(self): - with self.nodes[0].assert_debug_log(expected_msgs=['Warning: parsed potentially confusing double-negative -connect=0']): + with self.nodes[0].assert_debug_log(expected_msgs=['Warning: parsed potentially confusing double-negative -connect=0\n']): self.start_node(0, extra_args=['-noconnect=0']) self.stop_node(0) |