181
185
# Merge the other branch into checkout
185
189
self.assertEqual(['o2'], checkout1.get_parent_ids()[1:])
187
191
# At this point, 'commit' should fail, because we are out of date
188
192
self.run_bzr_error(["please run 'bzr update'"],
191
195
# This should not report about local commits being pending
192
196
# merges, because they were real merges
193
197
out, err = self.run_bzr('update')
194
198
self.assertEqual('', out)
198
202
# The pending merges should still be there
199
203
self.assertEqual(['o2'], checkout1.get_parent_ids()[1:])