This website works better with JavaScript.
Home
Help
Sign In
ben
/
earwigbot
mirror of
https://github.com/earwig/earwigbot
Watch
1
Star
1
Fork
0
Code
Releases
4
Activity
Browse Source
Fixing unit test code.
tags/v0.1^2
Ben Kurtovic
13 years ago
parent
27867763eb
commit
15748c6edc
2 changed files
with
4 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
earwigbot/tests/test_calc.py
+2
-1
earwigbot/tests/test_test.py
+ 2
- 1
earwigbot/tests/test_calc.py
View File
@@ -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)
+ 2
- 1
earwigbot/tests/test_test.py
View File
@@ -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)
Write
Preview
Loading…
Cancel
Save