Remove unused methods.
This commit is contained in:
@@ -333,17 +333,6 @@ class TestDownloadtranscripts(Basetranscripts):
|
||||
del_cached_content(content_location)
|
||||
return content_location
|
||||
|
||||
def remove_subs_from_store(self, subs_id):
|
||||
"""Remove from store, if transcripts content exists."""
|
||||
filename = 'subs_{0}.srt.sjson'.format(subs_id)
|
||||
content_location = StaticContent.compute_location(
|
||||
self.org, self.number, filename)
|
||||
try:
|
||||
content = contentstore().find(content_location)
|
||||
contentstore().delete(content.get_id())
|
||||
except NotFoundError:
|
||||
pass
|
||||
|
||||
def test_success_download_youtube(self):
|
||||
self.item.data = '<video youtube="1:JMD_ifUUfsU" />'
|
||||
modulestore().update_item(self.item, self.user.id)
|
||||
@@ -521,17 +510,6 @@ class TestChecktranscripts(Basetranscripts):
|
||||
del_cached_content(content_location)
|
||||
return content_location
|
||||
|
||||
def remove_subs_from_store(self, subs_id):
|
||||
"""Remove from store, if transcripts content exists."""
|
||||
filename = 'subs_{0}.srt.sjson'.format(subs_id)
|
||||
content_location = StaticContent.compute_location(
|
||||
self.org, self.number, filename)
|
||||
try:
|
||||
content = contentstore().find(content_location)
|
||||
contentstore().delete(content.get_id())
|
||||
except NotFoundError:
|
||||
pass
|
||||
|
||||
def test_success_download_nonyoutube(self):
|
||||
subs_id = str(uuid4())
|
||||
self.item.data = textwrap.dedent("""
|
||||
|
||||
Reference in New Issue
Block a user