# HG changeset patch # User Marcin Kuzminski # Date 2012-10-08 22:08:47 # Node ID 28b85b1b46cfe8704ab3d5b7dff1ce26180ac665 # Parent 1b275d04ac0766630729232fbd698b90cc9d8c33 fixed typo in lib tests diff --git a/rhodecode/tests/test_libs.py b/rhodecode/tests/test_libs.py --- a/rhodecode/tests/test_libs.py +++ b/rhodecode/tests/test_libs.py @@ -145,7 +145,7 @@ class TestLibs(unittest.TestCase): self.assertEqual(age(n + delt(hours=24)), u'in 1 day') self.assertEqual(age(n + delt(hours=24 * 5)), u'in 5 days') self.assertEqual(age(n + delt(hours=24 * (calendar.mdays[n.month - 1] + 2))), - u'in 1 month and 1 days') + u'in 1 month and 1 day') self.assertEqual(age(n + delt(hours=24 * 400)), u'in 1 year and 1 month') def test_tag_exctrator(self):