From be470adb0312a9fc88c8440ad8b6ecb78daf0f69 Mon Sep 17 00:00:00 2001 From: Chris Rodriguez Date: Mon, 29 Aug 2016 13:21:07 -0400 Subject: [PATCH] Removing unused variable from recent word cloud updates --- common/lib/xmodule/xmodule/word_cloud_module.py | 1 - lms/djangoapps/courseware/tests/test_word_cloud.py | 1 - 2 files changed, 2 deletions(-) diff --git a/common/lib/xmodule/xmodule/word_cloud_module.py b/common/lib/xmodule/xmodule/word_cloud_module.py index 4850f6d4cd..23ce97584c 100644 --- a/common/lib/xmodule/xmodule/word_cloud_module.py +++ b/common/lib/xmodule/xmodule/word_cloud_module.py @@ -242,7 +242,6 @@ class WordCloudModule(WordCloudFields, XModule): context = { 'ajax_url': self.system.ajax_url, 'display_name': self.display_name, - 'display_name_default': WordCloudFields.display_name.default, 'instructions': self.instructions, 'element_class': self.location.category, 'element_id': self.location.html_id(), diff --git a/lms/djangoapps/courseware/tests/test_word_cloud.py b/lms/djangoapps/courseware/tests/test_word_cloud.py index a7de27f303..18add8df13 100644 --- a/lms/djangoapps/courseware/tests/test_word_cloud.py +++ b/lms/djangoapps/courseware/tests/test_word_cloud.py @@ -246,7 +246,6 @@ class TestWordCloud(BaseTestXmodule): expected_context = { 'ajax_url': self.item_descriptor.xmodule_runtime.ajax_url, 'display_name': self.item_descriptor.display_name, - 'display_name_default': 'Word cloud', 'instructions': self.item_descriptor.instructions, 'element_class': self.item_descriptor.location.category, 'element_id': self.item_descriptor.location.html_id(),