Commit fe438bec by Don Mitchell

Ensure contentstore has no assets before generating test set

parent 9f5bd4e6
...@@ -174,6 +174,8 @@ class TestAssetIndex(CourseTestCase): ...@@ -174,6 +174,8 @@ class TestAssetIndex(CourseTestCase):
course_filter = Location( course_filter = Location(
XASSET_LOCATION_TAG, category='asset', course=self.course.location.course, org=self.course.location.org XASSET_LOCATION_TAG, category='asset', course=self.course.location.course, org=self.course.location.org
) )
# purge existing entries (a bit brutal but hopefully tests are independent enuf to not trip on this)
cstore.fs_files.remove(course_filter.dict())
base_entry = { base_entry = {
'displayname': 'foo.jpg', 'displayname': 'foo.jpg',
'chunkSize': 262144, 'chunkSize': 262144,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment