Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
c904174b
Commit
c904174b
authored
12 years ago
by
Don Mitchell
Browse files
Options
Downloads
Patches
Plain Diff
Fix broken test and don't pass time units as strings but as ints.
parent
76d675ba
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cms/djangoapps/contentstore/tests/test_course_settings.py
+1
-1
1 addition, 1 deletion
cms/djangoapps/contentstore/tests/test_course_settings.py
cms/djangoapps/models/settings/course_grading.py
+2
-2
2 additions, 2 deletions
cms/djangoapps/models/settings/course_grading.py
with
3 additions
and
3 deletions
cms/djangoapps/contentstore/tests/test_course_settings.py
+
1
−
1
View file @
c904174b
...
...
@@ -249,7 +249,7 @@ class CourseGradingTest(CourseTestCase):
altered_grader
=
CourseGradingModel
.
update_from_json
(
test_grader
.
__dict__
)
self
.
assertDictEqual
(
test_grader
.
__dict__
,
altered_grader
.
__dict__
,
"
cutoff add D
"
)
test_grader
.
grace_period
=
{
'
hours
'
:
'
4
'
}
test_grader
.
grace_period
=
{
'
hours
'
:
4
,
'
minutes
'
:
5
,
'
seconds
'
:
0
}
altered_grader
=
CourseGradingModel
.
update_from_json
(
test_grader
.
__dict__
)
self
.
assertDictEqual
(
test_grader
.
__dict__
,
altered_grader
.
__dict__
,
"
4 hour grace period
"
)
...
...
This diff is collapsed.
Click to expand it.
cms/djangoapps/models/settings/course_grading.py
+
2
−
2
View file @
c904174b
...
...
@@ -235,10 +235,10 @@ class CourseGradingModel(object):
@staticmethod
def
convert_set_grace_period
(
descriptor
):
# 5 hours 59 minutes 59 seconds =>
converted to iso format
# 5 hours 59 minutes 59 seconds =>
{ hours: 5, minutes : 59, seconds : 59}
rawgrace
=
descriptor
.
metadata
.
get
(
'
graceperiod
'
,
None
)
if
rawgrace
:
parsedgrace
=
{
str
(
key
):
val
for
(
val
,
key
)
in
re
.
findall
(
'
\s*(\d+)\s*(\w+)
'
,
rawgrace
)}
parsedgrace
=
{
str
(
key
):
int
(
val
)
for
(
val
,
key
)
in
re
.
findall
(
'
\s*(\d+)\s*(\w+)
'
,
rawgrace
)}
return
parsedgrace
else
:
return
None
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment