Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
2fc96d5f
Commit
2fc96d5f
authored
Mar 20, 2013
by
Will Daly
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a merge issue about code response
parent
7a282a9c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
lms/djangoapps/courseware/features/problems.py
+6
-3
No files found.
lms/djangoapps/courseware/features/problems.py
View file @
2fc96d5f
...
...
@@ -228,7 +228,8 @@ CORRECTNESS_SELECTORS = {
'string'
:
[
'div.correct'
],
'numerical'
:
[
'div.correct'
],
'formula'
:
[
'div.correct'
],
'script'
:
[
'div.correct'
],
},
'script'
:
[
'div.correct'
],
'code'
:
[
'span.correct'
]},
'incorrect'
:
{
'drop down'
:
[
'span.incorrect'
],
'multiple choice'
:
[
'label.choicegroup_incorrect'
,
...
...
@@ -237,7 +238,8 @@ CORRECTNESS_SELECTORS = {
'string'
:
[
'div.incorrect'
],
'numerical'
:
[
'div.incorrect'
],
'formula'
:
[
'div.incorrect'
],
'script'
:
[
'div.incorrect'
]},
'script'
:
[
'div.incorrect'
],
'code'
:
[
'span.incorrect'
]},
'unanswered'
:
{
'drop down'
:
[
'span.unanswered'
],
'multiple choice'
:
[
'span.unanswered'
],
...
...
@@ -245,7 +247,8 @@ CORRECTNESS_SELECTORS = {
'string'
:
[
'div.unanswered'
],
'numerical'
:
[
'div.unanswered'
],
'formula'
:
[
'div.unanswered'
],
'script'
:
[
'div.unanswered'
]}}
'script'
:
[
'div.unanswered'
],
'code'
:
[
'span.unanswered'
]
}}
@step
(
u'My "([^"]*)" answer is marked "([^"]*)"'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment