BOM-472
Fixing python3
This commit is contained in:
@@ -2025,7 +2025,7 @@ class ProgressPageShowCorrectnessTests(ProgressPageBaseTests):
|
||||
resp = self._get_progress_page()
|
||||
|
||||
# Test that no problem scores are present
|
||||
self.assertIn('No problem scores in this section', resp.content)
|
||||
self.assertIn('No problem scores in this section', resp.content.decode('utf-8'))
|
||||
|
||||
@ddt.data(
|
||||
('', None, False, True),
|
||||
|
||||
@@ -96,7 +96,7 @@ $(function () {
|
||||
## ----------------------------- Grade overview bar ------------------------- ##
|
||||
tickIndex += sectionSpacer
|
||||
|
||||
series = categories.values()
|
||||
series = list(categories.values())
|
||||
overviewBarX = tickIndex
|
||||
extraColorIndex = len(categories) #Keeping track of the next color to use for categories not in categories[]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user