From 79c86880c2f476ed444cce9c11fed87eb88d7fb6 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Fri, 28 Jun 2013 12:09:59 -0400 Subject: [PATCH] Wire license tests into top level tests. --- awx/main/tests/__init__.py | 1 + awx/main/tests/licenses.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/awx/main/tests/__init__.py b/awx/main/tests/__init__.py index 0df7bbc7fe..a2b8640f0a 100644 --- a/awx/main/tests/__init__.py +++ b/awx/main/tests/__init__.py @@ -7,5 +7,6 @@ from awx.main.tests.inventory import InventoryTest from awx.main.tests.projects import ProjectsTest from awx.main.tests.scripts import * from awx.main.tests.tasks import RunJobTest +from awx.main.tests.licenses import LicenseTests from awx.main.tests.jobs import * diff --git a/awx/main/tests/licenses.py b/awx/main/tests/licenses.py index de133f81f8..cfb5567350 100644 --- a/awx/main/tests/licenses.py +++ b/awx/main/tests/licenses.py @@ -13,7 +13,7 @@ from awx.main.models import * from awx.main.tests.base import BaseTest from awx.main.licenses import * -class LicensesTest(BaseTest): +class LicenseTest(BaseTest): def setUp(self): super(LicensesTest, self).setUp()