소스 검색

Fixing unit test code.

tags/v0.1^2
Ben Kurtovic 12 년 전
부모
커밋
15748c6edc
2개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -1
      earwigbot/tests/test_calc.py
  2. +2
    -1
      earwigbot/tests/test_test.py

+ 2
- 1
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)


+ 2
- 1
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)


불러오는 중...
취소
저장