From 299a4511b65a462187e3cd6f55d24a24488a2461 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 11 Sep 2023 20:50:29 +0200 Subject: [PATCH] clean up stray regex.search in test_checksum_step --- test/framework/easyblock.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test/framework/easyblock.py b/test/framework/easyblock.py index 6afc9db94f..d526479f52 100644 --- a/test/framework/easyblock.py +++ b/test/framework/easyblock.py @@ -2446,7 +2446,6 @@ def test_checksum_step(self): # make sure there's no error logged for not finding checksums.json, # see also https://github.com/easybuilders/easybuild-framework/issues/4301 regex = re.compile("ERROR .*Couldn't find file checksums.json anywhere", re.M) - regex.search(stdout) self.assertFalse(regex.search(stdout), "Pattern '%s' should not be found in log" % regex.pattern) # fiddle with checksum to check whether faulty checksum is catched