8000 fix imports · madCode/twilio-python@75e6391 · GitHub
[go: up one dir, main page]

Skip to content

Commit 75e6391

Browse files
committed
fix imports
1 parent 44e1a98 commit 75e6391

10 files changed

+10
-10
lines changed

tests/test_accounts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from mock import Mock, patch
44

5-
from tools import create_mock_json
5+
from tests.tools import create_mock_json
66
from twilio.rest.resources import Account
77

88

tests/test_call_feedback.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from nose.tools import assert_equal
44
from mock import Mock, patch, ANY
5-
from tools import create_mock_json
5+
from tests.tools import create_mock_json
66
from twilio.rest.resources import Call, Calls
77

88
AUTH = ('foo', 'bar')

tests/test_calls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from mock import patch, Mock
33
from nose.tools import assert_true
44
from twilio.rest.resources import Calls, Call
5-
from tools import create_mock_json
5+
from tests.tools import create_mock_json
66

77
BASE_URI = "https://api.twilio.com/2010-04-01/Accounts/AC123"
88
ACCOUNT_SID = "AC123"

tests/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from twilio.rest.resources.imports import json
77
from twilio.rest import TwilioRestClient, resources, TwilioTaskRouterClient
8-
from tools import create_mock_json
8+
from tests.tools import create_mock_json
99

1010
AUTH = ("ACCOUNT_SID", "AUTH_TOKEN")
1111

tests/test_members.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from mock import patch
2-
from tools import create_mock_json
2+
from tests.tools import create_mock_json
33
from twilio.rest.resources import Members
44

55
QUEUE_SID = "QU1b9faddec3d54ec18488f86c83019bf0"

tests/test_notifications.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from mock import patch
33
from nose.tools import raises, assert_true
44
from twilio.rest.resources import Notifications
5-
from tools import create_mock_json
5+
from tests.tools import create_mock_json
66

77
BASE_URI = "https://api.twilio.com/2010-04-01/Accounts/AC123"
88
ACCOUNT_SID = "AC123"

tests/test_queues.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from mock import patch
2-
from tools import create_mock_json
2+
from tests.tools import create_mock_json
33
from twilio.rest.resources import Queues, Queue
44

55
BASE_URI = "https://api.twilio.com/2010-04-01/Accounts/AC123"

tests/test_recordings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from mock import patch
33
from nose.tools import raises, assert_equals, assert_true
44

5-
from tools import create_mock_json
5+
from tests.tools import create_mock_json
66
from twilio.rest.resources import Recordings, Recording
77

88
BASE_URI = "https://api.twilio.com/2010-04-01/Accounts/AC123"

tests/test_transcriptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from mock import patch, Mock
22
from nose.tools import raises
33
from twilio.rest.resources import Transcriptions, Transcription
4-
from tools import create_mock_json
4+
from tests.tools import create_mock_json
55

66
BASE_URI = "https://api.twilio.com/2010-04-01/Accounts/AC123"
77
ACCOUNT_SID = "AC123"

tests/test_usage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from mock import patch, Mock
22
from nose.tools import raises
33

4-
from tools import create_mock_json
4+
from tests.tools import create_mock_json
55
from twilio.rest.resources import Usage
66
from twilio.rest.resources.usage import UsageTriggers, UsageTrigger
77

0 commit comments

Comments
 (0)
0