From patchwork Wed Jul 20 03:38:21 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael-Doyle Hudson X-Patchwork-Id: 2780 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 D991023F57 for ; Wed, 20 Jul 2011 03:38:23 +0000 (UTC) Received: from mail-qw0-f52.google.com (mail-qw0-f52.google.com [209.85.216.52]) by fiordland.canonical.com (Postfix) with ESMTP id A0B5EA18609 for ; Wed, 20 Jul 2011 03:38:23 +0000 (UTC) Received: by qwb8 with SMTP id 8so3392087qwb.11 for ; Tue, 19 Jul 2011 20:38:23 -0700 (PDT) Received: by 10.224.198.7 with SMTP id em7mr7121151qab.112.1311133103085; Tue, 19 Jul 2011 20:38:23 -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.229.217.78 with SMTP id hl14cs102286qcb; Tue, 19 Jul 2011 20:38:22 -0700 (PDT) Received: by 10.227.6.205 with SMTP id a13mr2434928wba.106.1311133102016; Tue, 19 Jul 2011 20:38:22 -0700 (PDT) Received: from adelie.canonical.com (adelie.canonical.com [91.189.90.139]) by mx.google.com with ESMTP id ei15si11108562wbb.24.2011.07.19.20.38.21; Tue, 19 Jul 2011 20:38:21 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) client-ip=91.189.90.139; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) smtp.mail=bounces@canonical.com Received: from loganberry.canonical.com ([91.189.90.37]) by adelie.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1QjNc5-0002xW-7y for ; Wed, 20 Jul 2011 03:38:21 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id 38E432E896C for ; Wed, 20 Jul 2011 03:38:21 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-scheduler X-Launchpad-Branch: ~linaro-validation/lava-scheduler/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 35 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-scheduler/trunk] Rev 35: fix tests (sorry) Message-Id: <20110720033821.17308.14530.launchpad@loganberry.canonical.com> Date: Wed, 20 Jul 2011 03:38:21 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="13405"; Instance="initZopeless config overlay" X-Launchpad-Hash: 6c367521e86548ae4795f867f8b00150a2dadba1 ------------------------------------------------------------ revno: 35 committer: Michael-Doyle Hudson branch nick: trunk timestamp: Wed 2011-07-20 15:36:11 +1200 message: fix tests (sorry) modified: lava_scheduler_app/models.py --- lp:lava-scheduler https://code.launchpad.net/~linaro-validation/lava-scheduler/trunk You are subscribed to branch lp:lava-scheduler. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-scheduler/trunk/+edit-subscription === modified file 'lava_scheduler_app/models.py' --- lava_scheduler_app/models.py 2011-07-11 21:24:27 +0000 +++ lava_scheduler_app/models.py 2011-07-20 03:36:11 +0000 @@ -78,7 +78,7 @@ (CANCELED, 'Canceled'), ) - id = models.IntegerField(primary_key=True) + id = models.AutoField(primary_key=True) submitter = models.ForeignKey( User,