adv_plugin_testing: fix missing arg to getMsg()

Closes GH-80.
This commit is contained in:
James Lu 2017-08-30 23:12:34 -07:00 committed by GitHub
parent 3e5eba6298
commit 595fe05512

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