/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 tests/test_push.py

Avoid using file ids in object store code.

Merged from https://code.launchpad.net/~jelmer/brz-git/no-push-file-ids/+merge/342827

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
        commit = store[gitid]
112
112
        tree = store[commit.tree]
113
113
        tree.check()
114
 
        self.assertTrue(tree["baz"][1] in store)
 
114
        self.assertIn("baz", tree, repr(tree.items()))
 
115
        self.assertIn(tree["baz"][1], store)
115
116
        baz = store[tree["baz"][1]]
116
117
        baz.check()
117
118
        ircdotnet = store[baz["IrcDotNet"][1]]