/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_graph.py

  • Committer: Aaron Bentley
  • Date: 2007-12-04 03:36:03 UTC
  • mfrom: (3073 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3133.
  • Revision ID: aaron.bentley@utoronto.ca-20071204033603-equ8y41vfk8vkway
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
373
373
        self.assertEqual(set(['rev1']), graph.heads(('rev1', 'null:')))
374
374
 
375
375
    def test_heads_one(self):
376
 
        # A single node will alwaya be a head
 
376
        # A single node will always be a head
377
377
        graph = self.make_graph(ancestry_1)
378
378
        self.assertEqual(set(['null:']), graph.heads(['null:']))
379
379
        self.assertEqual(set(['rev1']), graph.heads(['rev1']))