mirror of https://github.com/zulip/zulip.git
tests: Remove set literal in InviteUserTest.test_invalid_stream
This isn't valid syntax in Python 2.6. (imported from commit 0dc8ef72a27f1c9d559b59d4243948818d1cb75a)
This commit is contained in:
parent
e592e71515
commit
38f2498015
|
@ -805,7 +805,7 @@ earl-test@humbughq.com""", streams=["Denmark"]))
|
|||
Tests inviting to a non-existent stream.
|
||||
"""
|
||||
self.login("hamlet@humbughq.com")
|
||||
self.assert_json_error(self.invite("iago-test@humbughq.com", {"NotARealStream"}),
|
||||
self.assert_json_error(self.invite("iago-test@humbughq.com", ["NotARealStream"]),
|
||||
"Stream does not exist: NotARealStream. No invites were sent.")
|
||||
|
||||
class ChangeSettingsTest(AuthedTestCase):
|
||||
|
|
Loading…
Reference in New Issue