/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/tests/test_osutils.py

  • Committer: Jelmer Vernooij
  • Date: 2017-07-30 23:53:38 UTC
  • mfrom: (6734.1.22 move-errors-more)
  • Revision ID: jelmer@jelmer.uk-20170730235338-25jy0lgifkyx796l
Merge lp:~jelmer/brz/move-errors-more.

Show diffs side-by-side

added added

removed removed

Lines of Context:
404
404
        self.assertFormatedDelta('2 seconds in the future', -2)
405
405
 
406
406
    def test_format_date(self):
407
 
        self.assertRaises(errors.UnsupportedTimezoneFormat,
 
407
        self.assertRaises(osutils.UnsupportedTimezoneFormat,
408
408
            osutils.format_date, 0, timezone='foo')
409
409
        self.assertIsInstance(osutils.format_date(0), str)
410
410
        self.assertIsInstance(osutils.format_local_date(0), unicode)