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