hotspots: Replace stream_settings with intro_streams and intro_topics.

This commit is contained in:
Rishi Gupta
2017-08-29 17:19:55 -07:00
committed by Tim Abbott
parent 0677bd2a6d
commit a8deedbbb6
4 changed files with 26 additions and 13 deletions

View File

@@ -24,10 +24,10 @@ class TestGetNextHotspots(ZulipTestCase):
# type: () -> None
user = self.example_user('hamlet')
do_mark_hotspot_as_read(user, 'intro_reply')
do_mark_hotspot_as_read(user, 'stream_settings')
do_mark_hotspot_as_read(user, 'intro_compose')
hotspots = get_next_hotspots(user)
self.assertEqual(len(hotspots), 1)
self.assertEqual(hotspots[0]['name'], 'intro_compose')
self.assertEqual(hotspots[0]['name'], 'intro_streams')
def test_all_done(self):
# type: () -> None