8000 spacing in new test file · sangsiri/twilio-python@d7f6d22 · GitHub
[go: up one dir, main page]

Skip to content

Commit d7f6d22

Browse files
author
Kevin Burke
committed
spacing in new test file
1 parent 6dd329d commit d7f6d22

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/test_credentials.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@
44
from twilio import TwilioException
55
from twilio.rest import TwilioRestClient, find_credentials
66

7+
78
def test_creds_not_found():
89
""" I shouldn't find credentials if they are not there """
910
assert_equal(find_credentials({'foo': 'bar'}), (None, None))
1011

12+
1113
def test_find_creds():
1214
""" I should find the credentials if they are there """
1315
env = {
@@ -17,6 +19,7 @@ def test_find_creds():
1719
}
1820
assert_equal(find_credentials(env), ('AC123', '456'))
1921

22+
2023
@patch("twilio.rest.find_credentials")
2124
def test_creds_error(creds):
2225
creds.return_value = (None, None)

0 commit comments

Comments
 (0)
0