/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_roundtrip.py

  • Committer: Jelmer Vernooij
  • Date: 2010-05-02 19:26:28 UTC
  • mto: (0.200.912 trunk)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@samba.org-20100502192628-dy0lavjbjexavvmb
More work on roundtripping support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
            deserialize_fileid_map("bar/bla\0fid\n"))
99
99
 
100
100
    def test_serialize(self):
101
 
        self.assertEquals("bar/bla\0fid\n",
 
101
        self.assertEquals(["bar/bla\0fid\n"],
102
102
            serialize_fileid_map({"bar/bla": "fid"}))
103
103