Fix test_instructor_dashboard.py tests
This file was never run, because of a missing __init__.py. It needs a super() call to make the ModuleStoreTestCase work properly. Then one test failed, because of a missed change from dollar to configurable currency.
This commit is contained in:
@@ -64,7 +64,7 @@
|
||||
<h2>${_("Sales")}</h2>
|
||||
<div>
|
||||
%if section_data['total_amount'] is not None:
|
||||
<span><strong>${_("Total Credit Card Purchases: ")}</strong></span><span>$${section_data['total_amount']}</span>
|
||||
<span><strong>${_("Total Credit Card Purchases: ")}</strong></span><span>${section_data['currency_symbol']}${section_data['total_amount']}</span>
|
||||
%endif
|
||||
<span class="csv_tip">
|
||||
<div>
|
||||
|
||||
Reference in New Issue
Block a user