Fixed Unit Test Issues

This commit is contained in:
lduarte1991
2014-04-28 13:59:22 -04:00
parent 7dee976850
commit 2fd071fc39
2 changed files with 1 additions and 2 deletions

View File

@@ -84,7 +84,6 @@ class TextAnnotationModule(AnnotatableFields, XModule):
'content_html': self.content,
'annotation_storage': self.annotation_storage_url,
'token':retrieve_token(self.user, self.annotation_token_secret),
'diacritic_marks': self.diacritics,
}
return self.system.render_template('textannotation.html', context)

View File

@@ -91,7 +91,7 @@ class VideoAnnotationModule(AnnotatableFields, XModule):
'sourceUrl': self.sourceurl,
'typeSource': extension,
'poster': self.poster_url,
'content_html': self._render_content(),
'content_html': self.content,
'annotation_storage': self.annotation_storage_url,
'token': retrieve_token(self.user, self.annotation_token_secret),
}