Index: relatorio/tests/test_api.py
===================================================================
--- relatorio/tests/test_api.py (revision 80:742f4386e51c)
+++ relatorio/tests/test_api.py (revision 89:757b097c61a5)
@@ -11,5 +11,5 @@
 # This program is distributed in the hope that it will be useful, but WITHOUT
 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more 
+# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
 # details.
 #
@@ -39,5 +39,5 @@
         "Testing the registration"
         reporting = ReportRepository()
-        reporting.add_report(StubObject, 'text/plain', 
+        reporting.add_report(StubObject, 'text/plain',
                              os.path.join('templates', 'test.tmpl'))
 
@@ -49,5 +49,5 @@
         eq_(mime, 'text/plain')
         eq_(report.mimetype, 'text/plain')
-        assert_true(report.fpath.endswith(os.path.join('templates', 
+        assert_true(report.fpath.endswith(os.path.join('templates',
                                                        'test.tmpl')))
 
@@ -105,8 +105,8 @@
 
         a = StubObject(name='Foo')
-        eq_(report(o=a, time="One o'clock").render(), 
+        eq_(report(o=a, time="One o'clock").render(),
             "Hi Foo,\nIt's One o'clock to 2 !\n")
-        eq_(report(o=a, time="One o'clock", y=4).render(), 
+        eq_(report(o=a, time="One o'clock", y=4).render(),
             "Hi Foo,\nIt's One o'clock to 5 !\n")
-        assert_raises(TypeError, report, a) 
+        assert_raises(TypeError, report, a)
 
