diff --git a/.moban.yaml b/.moban.yaml index be3e046b..b130b371 100644 --- a/.moban.yaml +++ b/.moban.yaml @@ -4,7 +4,7 @@ name: corobo dependencies: - pyopenssl<17.5 - - git+https://github.com/errbotio/errbot@c2639879d4c298933cdf406193de5a5e626db12b + - errbot~=6.0.0a0 - wolframalpha - github3.py~=1.0.0 - IGitt==0.4.1.dev20180317153318 diff --git a/requirements.txt b/requirements.txt index fe8044ed..20249b80 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ pyopenssl<17.5 -git+https://github.com/errbotio/errbot@c2639879d4c298933cdf406193de5a5e626db12b +errbot~=6.0.0a0 wolframalpha github3.py~=1.0.0 IGitt==0.4.1.dev20180317153318 diff --git a/tests/helper.py b/tests/helper.py index 1ecb62d2..0e1ef722 100644 --- a/tests/helper.py +++ b/tests/helper.py @@ -4,5 +4,5 @@ def plugin_testbot(klass, loglevel, config=None): config = config if config else dict() testbot = TestBot(loglevel=loglevel, extra_config=config) testbot.start() - plug = testbot.bot.plugin_manager.instanciateElement(klass) + plug = testbot.bot.plugin_manager.get_plugin_obj_by_name(klass) return plug, testbot