From 595fe05512df0313310e18783c56f817107c6d41 Mon Sep 17 00:00:00 2001 From: James Lu Date: Wed, 30 Aug 2017 23:12:34 -0700 Subject: [PATCH] adv_plugin_testing: fix missing arg to getMsg() Closes GH-80. --- develop/advanced_plugin_testing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/develop/advanced_plugin_testing.rst b/develop/advanced_plugin_testing.rst index 7a0af71..47d30a9 100644 --- a/develop/advanced_plugin_testing.rst +++ b/develop/advanced_plugin_testing.rst @@ -141,7 +141,7 @@ test user for our test bot:: # Create a valid user to use self.prefix = 'foo!bar@baz' 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? This must be done first. Otherwise several problems are likely to arise. For