~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_chk_map.py

  • Committer: John Arbash Meinel
  • Date: 2009-10-21 20:53:21 UTC
  • mto: This revision was merged to the branch mainline in revision 4771.
  • Revision ID: john@arbash-meinel.com-20091021205321-j62yud7d5lfx2za1
Revert previous change.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1139
1139
            {("a","a"):"content here", ("a", "b",):"more content",
1140
1140
             ("b", ""): 'boring content'},
1141
1141
            maximum_size=10, key_width=2)
1142
 
        print
1143
 
        print chkmap._dump_tree()
1144
 
        print repr(chk_map._page_cache[chkmap.key()])
1145
 
        print repr(chk_map._page_cache[chkmap._root_node._items['a']._key])
1146
1142
        self.assertEqual(
1147
1143
            {("a", "a"): "content here", ("a", "b"): 'more content'},
1148
1144
            self.to_dict(chkmap, [("a",)]))