~nataliabidart/magicicada-client/fix-travis-ubuntuone-clientdefs

« back to all changes in this revision

Viewing changes to magicicadaclient/syncdaemon/tests/test_localrescan.py

  • Committer: Natalia
  • Date: 2018-05-19 20:44:54 UTC
  • mto: This revision was merged to the branch mainline in revision 1445.
  • Revision ID: natalia.bidart@ubuntu.com-20180519204454-fliiqyexj67r7fp9
- Rename python package to magicicadaclient.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
from ubuntuone.devtools.handlers import MementoHandler
41
41
from ubuntuone.devtools.testcases import skipIfOS
42
42
 
43
 
from contrib.testing.testcase import (
 
43
from magicicadaclient.testing.testcase import (
44
44
    BaseTwistedTestCase,
45
45
    FakeVolumeManager,
46
46
    skip_if_win32_and_uses_readonly,
47
47
)
48
 
from ubuntuone.platform import (
 
48
from magicicadaclient.platform import (
49
49
    make_dir,
50
50
    make_link,
51
51
    open_file,
59
59
    set_no_rights,
60
60
    stat_path,
61
61
)
62
 
from ubuntuone.syncdaemon import (
 
62
from magicicadaclient.syncdaemon import (
63
63
    event_queue, filesystem_manager, local_rescan, volume_manager
64
64
)
65
 
from ubuntuone.syncdaemon.marker import MDMarker
66
 
from ubuntuone.syncdaemon.tritcask import Tritcask
67
 
from ubuntuone.syncdaemon.volume_manager import (
 
65
from magicicadaclient.syncdaemon.marker import MDMarker
 
66
from magicicadaclient.syncdaemon.tritcask import Tritcask
 
67
from magicicadaclient.syncdaemon.volume_manager import (
68
68
    ACCESS_LEVEL_RO,
69
69
    ACCESS_LEVEL_RW,
70
70
)