From 15748c6edc291fbc25414a93a96529c9153fbb69 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sat, 10 Dec 2011 19:50:40 -0500 Subject: [PATCH] Fixing unit test code. --- earwigbot/tests/test_calc.py | 3 ++- earwigbot/tests/test_test.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/earwigbot/tests/test_calc.py b/earwigbot/tests/test_calc.py index 4c175c5..240fcbe 100644 --- a/earwigbot/tests/test_calc.py +++ b/earwigbot/tests/test_calc.py @@ -23,8 +23,9 @@ import unittest from earwigbot.commands.calc import Command +from earwigbot.tests import CommandTestCase -class TestCalc(support.CommandTestCase): +class TestCalc(CommandTestCase): def setUp(self): super(TestCalc, self).setUp(Command) diff --git a/earwigbot/tests/test_test.py b/earwigbot/tests/test_test.py index be077cd..3aeaa23 100644 --- a/earwigbot/tests/test_test.py +++ b/earwigbot/tests/test_test.py @@ -23,8 +23,9 @@ import unittest from earwigbot.commands.test import Command +from earwigbot.tests import CommandTestCase -class TestTest(support.CommandTestCase): +class TestTest(CommandTestCase): def setUp(self): super(TestTest, self).setUp(Command)