Skip to content

Commit 0b76acf

Browse files
chore: remove auth from request.__str__()
1 parent 1964469 commit 0b76acf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/http/test_http_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,8 +307,8 @@ def test_str(self):
307307
)
308308
expected = (
309309
"POST https://api.twilio.com/2010-04-01/Accounts.json?PageSize=1\n"
310-
" -d \"FriendlyName=My New Account\"\n"
311-
" -H \"X-Custom-Header: Value\""
310+
' -d "FriendlyName=My New Account"\n'
311+
' -H "X-Custom-Header: Value"'
312312
)
313313
self.assertEqual(expected, req.__str__())
314314

0 commit comments

Comments
 (0)