From bf67c833402cbcbcca64a62ce3dd752f8b37e0d4 Mon Sep 17 00:00:00 2001 From: Chris Dodge Date: Thu, 12 Sep 2013 15:58:56 -0400 Subject: [PATCH] update comment and verify seeding was done --- cms/djangoapps/contentstore/tests/test_contentstore.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cms/djangoapps/contentstore/tests/test_contentstore.py b/cms/djangoapps/contentstore/tests/test_contentstore.py index 41e6906906..9bea3b2784 100644 --- a/cms/djangoapps/contentstore/tests/test_contentstore.py +++ b/cms/djangoapps/contentstore/tests/test_contentstore.py @@ -1295,8 +1295,9 @@ class ContentStoreTest(ModuleStoreTestCase): self.assertTrue(are_permissions_roles_seeded(self._get_course_id(test_course_data))) def test_forum_unseeding(self): - """Test new course creation and verify forum seeding """ + """Test new course creation and verify forum unseeding """ test_course_data = self.assert_created_course(number_suffix=uuid4().hex) + self.assertTrue(are_permissions_roles_seeded(self._get_course_id(test_course_data))) course_id = self._get_course_id(test_course_data) unseed_permissions_roles(course_id) self.assertFalse(are_permissions_roles_seeded(course_id))