Remove the default "null" input send during GET request (#691)

* Remove the default "null" input send during GET request

* Remove the 'null' value from all tests
This commit is contained in:
R1kk3r
2018-01-31 16:16:11 -08:00
committed by Jason White
parent 5c9c2f7523
commit cbfe8d0f62
371 changed files with 931 additions and 931 deletions
+1 -1
View File
@@ -259,7 +259,7 @@ class Requester:
url = self.__makeAbsoluteUrl(url)
url = self.__addParametersToUrl(url, parameters)
encoded_input = "null"
encoded_input = None
if input is not None:
requestHeaders["Content-Type"], encoded_input = encode(input)