From 41103b1fa73da75e21195c2cbe297013692f65b3 Mon Sep 17 00:00:00 2001 From: Kevin Murphy Date: Wed, 29 Dec 2004 06:42:01 +0000 Subject: [PATCH] Test for fix for bug #1092462 --- test/test_Words.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_Words.py b/test/test_Words.py index e281daa6e..b122f0017 100644 --- a/test/test_Words.py +++ b/test/test_Words.py @@ -37,7 +37,7 @@ class WordsTestCase(ChannelPluginTestCase, PluginDocumentation): PluginTestCase.setUp(self) # Add some words to for us to use fd = file('%s/words' % conf.supybot.directories.data(), 'w') - fd.writelines(['hello']) + fd.writelines(['hello again']) fd.close() # Putting in a comment to make this different. @@ -51,7 +51,7 @@ class WordsTestCase(ChannelPluginTestCase, PluginDocumentation): self.assertError('guess j') self.assertError('letters') self.assertNotError('hangman') - self.assertNotError('guess hello') + self.assertNotError('guess hello again') self.assertNotError('hangman') self.assertNotError('guess j') self.assertNotError('g')