~ubuntuone-hackers/click-toolbelt/trunk

« back to all changes in this revision

Viewing changes to click_toolbelt/tests/test_login.py

[r=matiasb,fgallina] split store api into standalone namespace for easier vendoring

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
        mock_environ = {
38
38
            'UBUNTU_SSO_API_ROOT_URL': UBUNTU_SSO_API_ROOT_URL,
39
39
        }
40
 
        patcher = patch('click_toolbelt.api._login.os.environ', mock_environ)
 
40
        patcher = patch('storeapi._login.os.environ', mock_environ)
41
41
        patcher.start()
42
42
        self.addCleanup(patcher.stop)
43
43