From 421283d1611a9dee0f416bfad31c7eff1e6ac7aa Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Mon, 10 Feb 2014 23:13:49 +0400 Subject: [PATCH] Output match processor to fix CentOS build was placed incorrectly. --- system/t04_mirror/create.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/t04_mirror/create.py b/system/t04_mirror/create.py index 59860127..0bc278cd 100644 --- a/system/t04_mirror/create.py +++ b/system/t04_mirror/create.py @@ -119,7 +119,7 @@ class CreateMirror11Test(BaseTest): """ runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror11 http://mirror.yandex.ru/debian/ squeeze" fixtureGpg = True - outputMatchPrepare = lambda _, s: re.sub(r'Signature made .* using|gpgv: keyblock resource .*$|gpgv: Can\'t check signature: .*$', '', s, flags=re.MULTILINE) + outputMatchPrepare = lambda _, s: re.sub(r'Signature made .* using', '', s) def check(self): self.check_output() @@ -133,7 +133,7 @@ class CreateMirror12Test(BaseTest): runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror12 http://mirror.yandex.ru/debian/ squeeze" fixtureGpg = False gold_processor = BaseTest.expand_environ - outputMatchPrepare = lambda _, s: re.sub(r'Signature made .* using', '', s) + outputMatchPrepare = lambda _, s: re.sub(r'Signature made .* using|gpgv: keyblock resource .*$|gpgv: Can\'t check signature: .*$', '', s, flags=re.MULTILINE) expectedCode = 1