Change humbug => zulip in some local variables.

(imported from commit 88caa4a87ea0fd269ab741645c124c5d07d69c0a)
This commit is contained in:
Tim Abbott
2013-08-06 16:20:02 -04:00
parent 2db6dc6c88
commit 661ca38b58
2 changed files with 6 additions and 6 deletions

View File

@@ -1678,8 +1678,8 @@ class S3Test(AuthedTestCase):
A call to /json/upload_file should return a uri and actually create an object.
"""
self.login("hamlet@zulip.com")
fp = StringIO("humbug!")
fp.name = "humbug.txt"
fp = StringIO("zulip!")
fp.name = "zulip.txt"
result = self.client.post("/json/upload_file", {'file': fp})
self.assert_json_success(result)
@@ -1687,7 +1687,7 @@ class S3Test(AuthedTestCase):
self.assertIn("uri", json)
uri = json["uri"]
self.test_uris.append(uri)
self.assertEquals("humbug!", urllib2.urlopen(uri).read().strip())
self.assertEquals("zulip!", urllib2.urlopen(uri).read().strip())
def test_multiple_upload_failure(self):
"""