Variables are never used in the tests. Remove them.

This commit is contained in:
Emil Stenström 2021-09-10 11:46:09 +02:00
parent 5fcabaa5ba
commit fa3731422f

View file

@ -20,10 +20,7 @@ class SimpleComponentWithSharedDependency(component.Component):
template_name = "simple_template.html"
def get_context_data(self, variable, variable2="default"):
return {
"variable": variable,
"variable2": variable2,
}
return {}
class Media:
css = ["style.css", "style2.css"]