~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_reconfigure.py

  • Committer: Aaron Bentley
  • Date: 2007-09-13 01:54:20 UTC
  • mto: This revision was merged to the branch mainline in revision 2826.
  • Revision ID: aaron.bentley@utoronto.ca-20070913015420-l766kszjaexug01y
Cleanups

Show diffs side-by-side

added added

removed removed

Lines of Context:
115
115
        branch.set_bound_location(None)
116
116
        self.assertEqual('bzr:old-bound',
117
117
                         reconfiguration._select_bind_location())
 
118
        reconfiguration.new_bound_location = 'ftp://user-specified'
 
119
        self.assertEqual('ftp://user-specified',
 
120
                         reconfiguration._select_bind_location())
118
121
 
119
122
    def test_select_reference_bind_location(self):
120
123
        branch = self.make_branch('branch')