From 550761d97b8ee2239f0eb24b9cce3fa9a4091a9a Mon Sep 17 00:00:00 2001 From: Mike Sinkovsky Date: Wed, 18 Jan 2017 18:53:54 +0500 Subject: cleanup: @staticmethod --- mesontest.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mesontest.py b/mesontest.py index a17c431..bce4100 100755 --- a/mesontest.py +++ b/mesontest.py @@ -333,12 +333,14 @@ TIMEOUT: %4d self.run_tests(tests) return self.fail_count + @staticmethod def split_suite_string(suite): if ':' in suite: return suite.split(':', 1) else: return suite, "" + @staticmethod def test_in_suites(test, suites): for suite in suites: (prj_match, st_match) = TestHarness.split_suite_string(suite) -- cgit v1.1