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

« back to all changes in this revision

Viewing changes to magicicadaclient/platform/tests/os_helper/test_darwin.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:
35
35
from twisted.internet import defer
36
36
from ubuntuone.devtools.handlers import MementoHandler
37
37
 
38
 
from ubuntuone.platform import (
 
38
from magicicadaclient.platform import (
39
39
    move_to_trash,
40
40
    open_file,
41
41
    stat_path,
42
42
)
43
 
from ubuntuone.platform.os_helper import darwin
44
 
from ubuntuone.platform.tests.os_helper import test_os_helper
 
43
from magicicadaclient.platform.os_helper import darwin
 
44
from magicicadaclient.platform.tests.os_helper import test_os_helper
45
45
 
46
46
DARWIN_TEST_FILE_NAME = u'naïve_test_file'
47
47