From d26f9b14052c9f66864e8f98022db565787a044e Mon Sep 17 00:00:00 2001 From: James Vega Date: Wed, 11 May 2005 00:58:04 +0000 Subject: [PATCH] plugins/Todo: Fix a test failure. --- plugins/Todo/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Todo/test.py b/plugins/Todo/test.py index 9a3dac506..233148134 100644 --- a/plugins/Todo/test.py +++ b/plugins/Todo/test.py @@ -44,7 +44,7 @@ class TodoTestCase(PluginTestCase): def testTodo(self): # Should not error, but no tasks yet. self.assertNotError('todo') - self.assertRegexp('todo', 'has no Todos') + self.assertRegexp('todo', 'You have no tasks') # Add a task self.assertNotError('todo add wash my car') self.assertRegexp('todo', '#1: wash my car')