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

« back to all changes in this revision

Viewing changes to magicicadaclient/platform/tests/os_helper/test_windows.py

  • Committer: Magicicada Bot
  • Author(s): Natalia
  • Date: 2018-05-30 23:22:37 UTC
  • mfrom: (1444.1.1 trunk)
  • Revision ID: magicicada_bot-20180530232237-caww40vavif7wf97
[r=facundo] - Rename python package to magicicadaclient.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
from twisted.internet import defer
37
37
from twisted.trial.unittest import TestCase
38
38
 
39
 
from contrib.testing.testcase import BaseTwistedTestCase
 
39
from magicicadaclient.testing.testcase import BaseTwistedTestCase
40
40
 
41
41
from ntsecuritycon import (
42
42
    FILE_ALL_ACCESS,
50
50
    SetFileAttributesW
51
51
)
52
52
 
53
 
from ubuntuone.platform.os_helper import windows as os_helper
54
 
from ubuntuone.platform.os_helper.windows import (
 
53
from magicicadaclient.platform.os_helper import windows as os_helper
 
54
from magicicadaclient.platform.os_helper.windows import (
55
55
    _set_file_attributes,
56
56
    _unicode_to_bytes,
57
57
    EVERYONE_SID,
69
69
    set_no_rights,
70
70
    WINDOWS_ILLEGAL_CHARS_MAP,
71
71
)
72
 
from ubuntuone.platform.tests.os_helper.test_os_helper import (
 
72
from magicicadaclient.platform.tests.os_helper.test_os_helper import (
73
73
    OSWrapperTests,
74
74
    WalkTests,
75
75
)