bot tests: Eliminate BotTestCaseBase.
We now just put `test_bot_usage` in StubBotTestCase and have BotTestCase inherit from that.
This commit is contained in:
parent
205f7c16c7
commit
fc251460fa
3 changed files with 10 additions and 12 deletions
|
@ -5,9 +5,9 @@ from __future__ import print_function
|
|||
|
||||
import json
|
||||
|
||||
from zulip_bots.test_lib import BotTestCaseBase
|
||||
from zulip_bots.test_lib import BotTestCase
|
||||
|
||||
class TestGithubDetailBot(BotTestCaseBase):
|
||||
class TestGithubDetailBot(BotTestCase):
|
||||
bot_name = "github_detail"
|
||||
mock_config = {'owner': 'zulip', 'repo': 'zulip'}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue