From patchwork Thu Aug 18 20:13:11 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Larson X-Patchwork-Id: 3519 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id DF36823E54 for ; Thu, 18 Aug 2011 20:13:13 +0000 (UTC) Received: from mail-ew0-f52.google.com (mail-ew0-f52.google.com [209.85.215.52]) by fiordland.canonical.com (Postfix) with ESMTP id CBF49A1815E for ; Thu, 18 Aug 2011 20:13:13 +0000 (UTC) Received: by ewy28 with SMTP id 28so1261708ewy.11 for ; Thu, 18 Aug 2011 13:13:13 -0700 (PDT) Received: by 10.213.27.27 with SMTP id g27mr29175ebc.18.1313698393478; Thu, 18 Aug 2011 13:13:13 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.213.102.5 with SMTP id e5cs95519ebo; Thu, 18 Aug 2011 13:13:13 -0700 (PDT) Received: by 10.227.160.15 with SMTP id l15mr2349383wbx.22.1313698392297; Thu, 18 Aug 2011 13:13:12 -0700 (PDT) Received: from indium.canonical.com (indium.canonical.com [91.189.90.7]) by mx.google.com with ESMTPS id ei15si6592051wbb.98.2011.08.18.13.13.12 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 18 Aug 2011 13:13:12 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) client-ip=91.189.90.7; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) smtp.mail=bounces@canonical.com Received: from ackee.canonical.com ([91.189.89.26]) by indium.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1Qu8xj-0007Ca-D6 for ; Thu, 18 Aug 2011 20:13:11 +0000 Received: from ackee.canonical.com (localhost [127.0.0.1]) by ackee.canonical.com (Postfix) with ESMTP id 5B644E160B for ; Thu, 18 Aug 2011 20:13:11 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-test X-Launchpad-Branch: ~linaro-validation/lava-test/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 89 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-test/trunk] Rev 89: Fix incorrectly named variable Message-Id: <20110818201311.12442.39882.launchpad@ackee.canonical.com> Date: Thu, 18 Aug 2011 20:13:11 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="13697"; Instance="initZopeless config overlay" X-Launchpad-Hash: cc2b71428931345fe6afe49cef001ab2553ae170 ------------------------------------------------------------ revno: 89 committer: Paul Larson branch nick: lava-test timestamp: Thu 2011-08-18 21:09:56 +0100 message: Fix incorrectly named variable modified: abrek/testdef.py --- lp:lava-test https://code.launchpad.net/~linaro-validation/lava-test/trunk You are subscribed to branch lp:lava-test. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-test/trunk/+edit-subscription === modified file 'abrek/testdef.py' --- abrek/testdef.py 2011-08-17 22:32:50 +0000 +++ abrek/testdef.py 2011-08-18 20:09:56 +0000 @@ -429,7 +429,7 @@ return provider[test_name] except KeyError: pass - raise ValueError("No such test %r" % test) + raise ValueError("No such test %r" % test_name) testloader = TestLoader().get_test_by_name