Commit 54062801 by Ben Patterson

Fix flaky test.

This test failed on master because it saw "Loading" and did not wait.
parent d838686c
......@@ -18,7 +18,7 @@ def find_student_profile_table(step): # pylint: disable=unused-argument
world.wait_for_visible('#data-student-profiles-table')
# Wait for the data table to be populated
world.wait_for(lambda _: world.css_text('#data-student-profiles-table') not in [u'', u'Loading...'])
world.wait_for(lambda _: world.css_text('#data-student-profiles-table') not in [u'', u'Loading'])
if world.role == 'instructor':
expected_data = [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment