~verterok/ubuntuone-client/volumemanager_udfs-2

« back to all changes in this revision

Viewing changes to tests/syncdaemon/test_tools.py

  • Committer: guillermo.gonzalez at canonical
  • Date: 2010-01-04 18:54:17 UTC
  • mfrom: (294.2.6 trunk)
  • Revision ID: guillermo.gonzalez@canonical.com-20100104185417-is0onxq4znx57u0j
merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
138
138
        d = self.tool.get_metadata(path)
139
139
        # the callback, pylint: disable-msg=C0111
140
140
        def callback(result):
141
 
            self.assertEquals('foo', str(result['path']))
 
141
            self.assertEquals(path, str(result['path']))
142
142
            self.assertEquals('', str(result['share_id']))
143
143
            self.assertEquals('node_id', result['node_id'])
144
144
        d.addCallback(callback)