Commit f1d84e5f authored by Xavier Thompson's avatar Xavier Thompson

test_slapproxy: Fix apparent typo

parent 5de858d5
...@@ -451,7 +451,7 @@ class MasterMixin(BasicMixin, unittest.TestCase): ...@@ -451,7 +451,7 @@ class MasterMixin(BasicMixin, unittest.TestCase):
app = self.app app = self.app
class TestConnectionHelper: class TestConnectionHelper:
def GET(self, path, params=None, headers=None): def GET(self, path, params=None, headers=None):
return app.get(path, query_string=params, data=data).data return app.get(path, query_string=params, headers=headers).data
def POST(self, path, params=None, data=None, def POST(self, path, params=None, data=None,
content_type='application/x-www-form-urlencoded'): content_type='application/x-www-form-urlencoded'):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment