Merge pull request #83 from GLolol/patch-1

adv_plugin_testing: add missing arg to getMsg()
This commit is contained in:
Valentin Lorentz 2017-09-17 15:10:28 +02:00 committed by GitHub
commit b9e29a8eec

View File

@ -141,7 +141,7 @@ test user for our test bot::
# Create a valid user to use # Create a valid user to use
self.prefix = 'foo!bar@baz' self.prefix = 'foo!bar@baz'
self.feedMsg('register tester moo', to=self.nick, frm=self.prefix)) self.feedMsg('register tester moo', to=self.nick, frm=self.prefix))
m = self.getMsg() # Response to registration. m = self.getMsg(' ') # Response to registration.
Now notice how the first line calls the parent class's setUp method first? Now notice how the first line calls the parent class's setUp method first?
This must be done first. Otherwise several problems are likely to arise. For This must be done first. Otherwise several problems are likely to arise. For