tests: remove redundant http_auth method.

(imported from commit 7fc425ce0e61e68c2fc033c02997ec0786e118fb)
This commit is contained in:
Jessica McKellar 2013-10-29 18:02:07 -04:00
parent 8e838f4db3
commit 54977707cf
1 changed files with 1 additions and 9 deletions

View File

@ -3829,21 +3829,13 @@ Making a comment, @**Othello, the Moor of Venice** is watching this issue
""")
class BeanstalkHookTests(AuthedTestCase):
def http_auth(self, username, password):
import base64
credentials = base64.b64encode('%s:%s' % (username, password))
auth_string = 'Basic %s' % (credentials,)
return auth_string
def send_beanstalk_message(self, action):
email = "hamlet@zulip.com"
api_key = self.get_api_key(email)
data = {'payload': self.fixture_data('beanstalk', action)}
return self.send_json_payload(email, "/api/v1/external/beanstalk",
data,
stream_name="commits",
HTTP_AUTHORIZATION=self.http_auth(email, api_key))
**self.api_auth(email))
def test_git_single(self):
msg = self.send_beanstalk_message('git_singlecommit')