tests: add sanity tests for python 2.7

Automation Hub still runs sanity tests on python 2.7

updating release to 1.1.1 to publish a new version.
This commit is contained in:
Yusuke Tsutsumi 2022-12-16 16:34:31 +00:00 committed by Yusuke Tsutsumi
parent cbae062c98
commit 509e0207ff
6 changed files with 34 additions and 7 deletions

View file

@ -112,7 +112,7 @@ class GcpSession(object):
This method should be avoided in favor of full_put
"""
kwargs = {'json': body}
return self.full_put(url, **kwargs, params=params)
return self.full_put(url, params=params, **kwargs)
def patch(self, url, body=None, **kwargs):
"""