/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 bzrlib/tests/test_osutils.py

  • Committer: Johan Walles
  • Date: 2009-05-07 04:58:58 UTC
  • mto: This revision was merged to the branch mainline in revision 4343.
  • Revision ID: johan.walles@gmail.com-20090507045858-kbpp96c2qtqj0l8v
Style fixes for minimum_path_selection().

Show diffs side-by-side

added added

removed removed

Lines of Context:
789
789
    def test_minimum_path_selection(self):
790
790
        self.assertEqual(set(),
791
791
            osutils.minimum_path_selection([]))
 
792
        self.assertEqual(set(['a']),
 
793
            osutils.minimum_path_selection(['a']))
792
794
        self.assertEqual(set(['a', 'b']),
793
795
            osutils.minimum_path_selection(['a', 'b']))
794
796
        self.assertEqual(set(['a/', 'b']),