File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ def test_number_country(self, request):
60
60
61
61
request .assert_called_with (
62
62
"GET" ,
63
- "{}/PhoneNumbers/Countries/EE" .format (BASE_URI ),
63
+ "{0 }/PhoneNumbers/Countries/EE" .format (BASE_URI ),
64
64
auth = AUTH ,
65
65
use_json_extension = False ,
66
66
)
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ def test_voice_countries(self, request):
30
30
31
31
request .assert_called_with (
32
32
"GET" ,
33
- "{}/Voice/Countries" .format (BASE_URI ),
33
+ "{0 }/Voice/Countries" .format (BASE_URI ),
34
34
auth = AUTH ,
35
35
use_json_extension = False ,
36
36
)
@@ -56,7 +56,7 @@ def test_voice_country(self, request):
56
56
57
57
request .assert_called_with (
58
58
"GET" ,
59
- "{}/Voice/Countries/EE" .format (BASE_URI ),
59
+ "{0 }/Voice/Countries/EE" .format (BASE_URI ),
60
60
auth = AUTH ,
61
61
use_json_extension = False ,
62
62
)
@@ -75,7 +75,7 @@ def test_voice_number(self, request):
75
75
76
76
request .assert_called_with (
77
77
"GET" ,
78
- "{}/Voice/Numbers/+14089673429" .format (BASE_URI ),
78
+ "{0 }/Voice/Numbers/+14089673429" .format (BASE_URI ),
79
79
auth = AUTH ,
80
80
use_json_extension = False ,
81
81
)
You can’t perform that action at this time.
0 commit comments