/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/blackbox/test_missing.py

remove all trailing whitespace from bzr source

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
        b_tree.commit(message='more')
57
57
 
58
58
        # run missing in a against b
59
 
        # this should not require missing to take out a write lock on a 
 
59
        # this should not require missing to take out a write lock on a
60
60
        # or b. So we take a write lock on both to test that at the same
61
61
        # time. This may let the test pass while the default branch is an
62
62
        # os-locking branch, but it will trigger failures with lockdir based
93
93
        lines3 = self.run_bzr('missing ../b --theirs-only', retcode=0)[0]
94
94
        self.assertEqualDiff('Other branch is up to date.\n', lines3)
95
95
 
96
 
        # relative to a, missing the 'merge' commit 
 
96
        # relative to a, missing the 'merge' commit
97
97
        os.chdir('../b')
98
98
        lines = self.run_bzr('missing ../a', retcode=1)[0].splitlines()
99
99
        self.assertEqual(missing, lines[0])