change app settings module structure (#22037)

This commit is contained in:
Josue Kouka 2018-02-14 09:56:57 +01:00
parent bc8ba0cc97
commit cb28f21774
3 changed files with 2 additions and 2 deletions

View File

@ -196,7 +196,7 @@ class Archimed(AppSettings):
'',
url(
r'account/(?P<username>\w+)/$',
'mandayejs.views.archimed_account_details',
'mandayejs.applications.views.archimed_account_details',
name='archimed-account-details'),
)

View File

@ -29,7 +29,7 @@ MOCKED_RESPONSES_LIST = [
]
@mock.patch('mandayejs.views.requests.Session.post')
@mock.patch('mandayejs.applications.views.requests.Session.post')
@mock.patch('mandayejs.applications.get_app_settings')
def test_archimed_ws(mocked_get_app_settings, mocked_requests_post):
mocked_get_app_settings.return_value = Archimed