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
f821e19f
Commit
f821e19f
authored
5 years ago
by
Troy Sankey
Browse files
Options
Downloads
Patches
Plain Diff
Update tests for previous commit
Updates tests for code changes in commit "Remove reads from old column".
parent
499fd0e4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
openedx/core/djangoapps/schedules/tests/test_resolvers.py
+1
-1
1 addition, 1 deletion
openedx/core/djangoapps/schedules/tests/test_resolvers.py
openedx/core/djangoapps/schedules/tests/test_signals.py
+2
-2
2 additions, 2 deletions
openedx/core/djangoapps/schedules/tests/test_signals.py
with
3 additions
and
3 deletions
openedx/core/djangoapps/schedules/tests/test_resolvers.py
+
1
−
1
View file @
f821e19f
...
...
@@ -120,7 +120,7 @@ class TestCourseUpdateResolver(SchedulesResolverTestMixin, ModuleStoreTestCase):
return
CourseUpdateResolver
(
async_send_task
=
Mock
(
name
=
'
async_send_task
'
),
site
=
self
.
site_config
.
site
,
target_datetime
=
enrollment
.
schedule
.
start
,
target_datetime
=
enrollment
.
schedule
.
start
_date
,
day_offset
=-
7
,
bin_num
=
CourseUpdateResolver
.
bin_num_for_user_id
(
self
.
user
.
id
),
)
...
...
This diff is collapsed.
Click to expand it.
openedx/core/djangoapps/schedules/tests/test_signals.py
+
2
−
2
View file @
f821e19f
...
...
@@ -155,7 +155,7 @@ class CreateScheduleTests(SharedModuleStoreTestCase):
mock_get_current_site
.
return_value
=
site
course
=
_create_course_run
(
self_paced
=
True
,
start_day_offset
=
5
)
# course starts in future
enrollment
=
CourseEnrollmentFactory
(
course_id
=
course
.
id
,
mode
=
CourseMode
.
AUDIT
)
assert
_strip_secs
(
enrollment
.
schedule
.
start
)
==
_strip_secs
(
course
.
start
)
assert
_strip_secs
(
enrollment
.
schedule
.
start
_date
)
==
_strip_secs
(
course
.
start
)
@override_waffle_flag
(
CREATE_SCHEDULE_WAFFLE_FLAG
,
True
)
def
test_course_already_started
(
self
,
mock_get_current_site
):
...
...
@@ -167,7 +167,7 @@ class CreateScheduleTests(SharedModuleStoreTestCase):
mock_get_current_site
.
return_value
=
site
course
=
_create_course_run
(
self_paced
=
True
,
start_day_offset
=-
5
)
# course already started
enrollment
=
CourseEnrollmentFactory
(
course_id
=
course
.
id
,
mode
=
CourseMode
.
AUDIT
)
assert
_strip_secs
(
enrollment
.
schedule
.
start
)
==
_strip_secs
(
enrollment
.
created
)
assert
_strip_secs
(
enrollment
.
schedule
.
start
_date
)
==
_strip_secs
(
enrollment
.
created
)
@ddt.ddt
...
...
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