Skip to content

Commit

Permalink
Update client_test.py
Browse files Browse the repository at this point in the history
  • Loading branch information
PacoVu committed Jun 7, 2019
1 parent be6da1e commit 3a1370f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ringcentral/http/client_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def test_create_request_with_query_string(self):
self.assertEqual('http://whatever?foo=bar&baz=qux', req.url)

req = Client().create_request(url='http://whatever', query_params={'a2z':['abc','xyz']})
self.assertEqual('http://whatever?foo=a2z=abc&a2z=xyz', req.url)
self.assertEqual('http://whatever?a2z=abc&a2z=xyz', req.url)

def test_create_request_encode_body_url(self):
r = Client().create_request(body=body, headers={'Content-Type': 'application/x-www-form-urlencoded'})
Expand Down

0 comments on commit 3a1370f

Please sign in to comment.