~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_inv.py

  • Committer: Daniel Knittl-Frank
  • Date: 2010-09-15 21:06:23 UTC
  • mto: This revision was merged to the branch mainline in revision 5427.
  • Revision ID: knittl89+bzr@googlemail.com-20100915210623-3jr0ltga8z9l7jd4
fix whitespace (only use spaces)

Show diffs side-by-side

added added

removed removed

Lines of Context:
591
591
 
592
592
    def test_entries_for_empty_inventory(self):
593
593
        """Test that entries() will not fail for an empty inventory"""
594
 
        inv = Inventory(root_id=None)
595
 
        self.assertEqual([], inv.entries())
 
594
        inv = Inventory(root_id=None)
 
595
        self.assertEqual([], inv.entries())
596
596
 
597
597
 
598
598
class TestInventoryEntry(TestCase):