Return-Path: X-Original-To: apmail-incubator-bloodhound-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-bloodhound-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2ECD7E24C for ; Mon, 7 Jan 2013 15:53:55 +0000 (UTC) Received: (qmail 92089 invoked by uid 500); 7 Jan 2013 15:53:55 -0000 Delivered-To: apmail-incubator-bloodhound-commits-archive@incubator.apache.org Received: (qmail 92055 invoked by uid 500); 7 Jan 2013 15:53:55 -0000 Mailing-List: contact bloodhound-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: bloodhound-dev@incubator.apache.org Delivered-To: mailing list bloodhound-commits@incubator.apache.org Received: (qmail 92046 invoked by uid 99); 7 Jan 2013 15:53:55 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Jan 2013 15:53:55 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Jan 2013 15:53:50 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id A1D7B2388847; Mon, 7 Jan 2013 15:53:30 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1429859 - /incubator/bloodhound/trunk/bloodhound_multiproduct/tests/model.py Date: Mon, 07 Jan 2013 15:53:30 -0000 To: bloodhound-commits@incubator.apache.org From: gjm@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130107155330.A1D7B2388847@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: gjm Date: Mon Jan 7 15:53:30 2013 New Revision: 1429859 URL: http://svn.apache.org/viewvc?rev=1429859&view=rev Log: fix check that file is the main program so it will run tests -towards #333 Modified: incubator/bloodhound/trunk/bloodhound_multiproduct/tests/model.py Modified: incubator/bloodhound/trunk/bloodhound_multiproduct/tests/model.py URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_multiproduct/tests/model.py?rev=1429859&r1=1429858&r2=1429859&view=diff ============================================================================== --- incubator/bloodhound/trunk/bloodhound_multiproduct/tests/model.py (original) +++ incubator/bloodhound/trunk/bloodhound_multiproduct/tests/model.py Mon Jan 7 15:53:30 2013 @@ -159,6 +159,6 @@ class ProductTestCase(unittest.TestCase) product.description = new_description self.assertEqual(new_description, product.description) -if __name__ == '__main_': +if __name__ == '__main__': unittest.main()