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
c6bbc724
Commit
c6bbc724
authored
Aug 19, 2015
by
Eric Fischer
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #9361 from edx/efischer/bok-choy-flakes
Fixing flaky TeamPageTest bokchoy tests
parents
f84243d8
c170ff44
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
1 deletions
+2
-1
common/test/acceptance/pages/lms/discussion.py
+1
-0
common/test/acceptance/pages/lms/teams.py
+1
-0
common/test/acceptance/tests/lms/test_teams.py
+0
-1
No files found.
common/test/acceptance/pages/lms/discussion.py
View file @
c6bbc724
...
@@ -402,6 +402,7 @@ class InlineDiscussionPage(PageObject):
...
@@ -402,6 +402,7 @@ class InlineDiscussionPage(PageObject):
return
self
.
q
(
css
=
self
.
_discussion_selector
+
" "
+
selector
)
return
self
.
q
(
css
=
self
.
_discussion_selector
+
" "
+
selector
)
def
is_browser_on_page
(
self
):
def
is_browser_on_page
(
self
):
self
.
wait_for_ajax
()
return
self
.
q
(
css
=
self
.
_discussion_selector
)
.
present
return
self
.
q
(
css
=
self
.
_discussion_selector
)
.
present
def
is_discussion_expanded
(
self
):
def
is_discussion_expanded
(
self
):
...
...
common/test/acceptance/pages/lms/teams.py
View file @
c6bbc724
...
@@ -261,6 +261,7 @@ class TeamPage(CoursePage, PaginatedUIMixin):
...
@@ -261,6 +261,7 @@ class TeamPage(CoursePage, PaginatedUIMixin):
def
is_browser_on_page
(
self
):
def
is_browser_on_page
(
self
):
"""Check if we're on the teams list page for a particular team."""
"""Check if we're on the teams list page for a particular team."""
self
.
wait_for_ajax
()
if
self
.
team
:
if
self
.
team
:
if
not
self
.
url
.
endswith
(
self
.
url_path
):
if
not
self
.
url
.
endswith
(
self
.
url_path
):
return
False
return
False
...
...
common/test/acceptance/tests/lms/test_teams.py
View file @
c6bbc724
...
@@ -748,7 +748,6 @@ class CreateTeamTest(TeamsTabBase):
...
@@ -748,7 +748,6 @@ class CreateTeamTest(TeamsTabBase):
self
.
verify_my_team_count
(
0
)
self
.
verify_my_team_count
(
0
)
@flaky
# TODO fix this, see TNL-3069
@attr
(
'shard_5'
)
@attr
(
'shard_5'
)
@ddt.ddt
@ddt.ddt
class
TeamPageTest
(
TeamsTabBase
):
class
TeamPageTest
(
TeamsTabBase
):
...
...
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