X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=blobdiff_plain;f=mudpy%2Ftests%2Fselftest.py;fp=mudpy%2Ftests%2Fselftest.py;h=ede3cb26f70e6d469095f4ac12089c37aec1bfc6;hp=c6f339866011342f65a91f9bb84fa264c8981039;hb=3878bed244ee3637eb0f3fc5e08840ef3b876dea;hpb=bf6d449108678b627e039db05da2ae504f4a72a2 diff --git a/mudpy/tests/selftest.py b/mudpy/tests/selftest.py index c6f3398..ede3cb2 100644 --- a/mudpy/tests/selftest.py +++ b/mudpy/tests/selftest.py @@ -488,7 +488,7 @@ def start_service(config): stdout=subprocess.PIPE, stderr=subprocess.PIPE) time.sleep(1) - return(service) + return service def stop_service(service): @@ -496,7 +496,7 @@ def stop_service(service): # The no-op case when no service was started if service is None: - return(success) + return success # This handles when the service is running as a direct child process service.terminate() @@ -530,7 +530,7 @@ def stop_service(service): with open("capture_stderr.log", "w") as serviceerr: serviceerr.write(stderr.decode("utf-8")) - return(success) + return success def tlog(message, quiet=False):