Merge pull request #8771 from edx/clintonb/currency-comparison-fix
Comparing currencies with same case
This commit is contained in:
@@ -33,7 +33,7 @@ class CourseApiViewTestMixin(object):
|
||||
""" Serialize a CourseMode to a dict. """
|
||||
return {
|
||||
u'name': course_mode.mode_slug,
|
||||
u'currency': course_mode.currency,
|
||||
u'currency': course_mode.currency.lower(),
|
||||
u'price': course_mode.min_price,
|
||||
u'sku': course_mode.sku
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user