From 7f3f499facbd73a3365b0983093270c54616dba5 Mon Sep 17 00:00:00 2001 From: vshepard Date: Mon, 18 Nov 2024 12:22:45 +0100 Subject: [PATCH] Fix style in test_simple.py --- tests/test_simple.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_simple.py b/tests/test_simple.py index 8f85a23b..62de1df5 100644 --- a/tests/test_simple.py +++ b/tests/test_simple.py @@ -1044,7 +1044,7 @@ def test_the_same_port(self): node2.port = node.port node2.init().start() - def test_make_simple_with_bin_dir(self): + def test_simple_with_bin_dir(self): with get_new_node() as node: node.init().start() bin_dir = node.bin_dir @@ -1059,7 +1059,7 @@ def test_make_simple_with_bin_dir(self): wrong_bin_dir.slow_start() raise RuntimeError("Error was expected.") # We should not reach this except FileNotFoundError: - pass # Expected error + pass # Expected error if __name__ == '__main__':