~didrocks/ubuntuone-client/dont-suffer-zg-crash

« back to all changes in this revision

Viewing changes to tests/platform/linux/test_filesystem_notifications.py

  • Committer: Bazaar Package Importer
  • Author(s): Rodney Dawes
  • Date: 2011-01-25 16:42:52 UTC
  • mto: This revision was merged to the branch mainline in revision 64.
  • Revision ID: james.westby@ubuntu.com-20110125164252-rl1pybasx1nsqgoy
Tags: upstream-1.5.3
ImportĀ upstreamĀ versionĀ 1.5.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
    filesystem_manager,
31
31
)
32
32
from contrib.testing import testcase
33
 
 
 
33
from ubuntuone.devtools.handlers import MementoHandler
34
34
from ubuntuone.platform.linux.filesystem_notifications import (
35
35
    _GeneralINotifyProcessor
36
36
)
69
69
 
70
70
        eq.subscribe(HitMe())
71
71
        self.monitor = eq.monitor
72
 
        self.log_handler = testcase.MementoHandler()
 
72
        self.log_handler = MementoHandler()
73
73
        self.log_handler.setLevel(logging.DEBUG)
74
74
        self.monitor.log.addHandler(self.log_handler)
75
75