From f4bf144145c3ab990ff39721f8929130d7328f14 Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Fri, 7 Feb 2014 10:57:19 +0400 Subject: [PATCH] Revert "Use non-default keyring in test, so that we don't have extra messages." This reverts commit ad623f7d74d75b0bb16c4ed1d2ae4b651dcad784. --- system/t04_mirror/update.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/t04_mirror/update.py b/system/t04_mirror/update.py index 9e5614ee..13c7708a 100644 --- a/system/t04_mirror/update.py +++ b/system/t04_mirror/update.py @@ -74,10 +74,10 @@ class UpdateMirror6Test(BaseTest): update mirrors: wrong checksum in package, but ignore """ fixtureCmds = [ - "aptly mirror create --ignore-signatures --keyring=aptlytest.gpg failure ${url} hardy main", + "aptly mirror create --ignore-signatures failure ${url} hardy main", ] fixtureWebServer = "test_release2" - runCmd = "aptly mirror update -ignore-checksums --ignore-signatures --keyring=aptlytest.gpg failure" + runCmd = "aptly mirror update -ignore-checksums --ignore-signatures failure" def gold_processor(self, gold): return string.Template(gold).substitute({'url': self.webServerUrl})