Skip to content

Commit

Permalink
fixup! feat: adjust button styling to match the ones from the LMS
Browse files Browse the repository at this point in the history
  • Loading branch information
Agrendalath committed May 8, 2024
1 parent ab0435d commit 626b952
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/integration/test_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def test_poll_submission(self):
self.assertEqual(self.browser.find_element_by_css_selector('.poll-footnote').text,
'Results gathered from 100 respondents.')

self.assertRaises(NoSuchElementException, self.get_submit)
self.assertRaises(NoSuchElementException, self.browser.find_element_by_css_selector, 'button.submit')

def test_submit_not_present_on_revisit(self):
"""
Expand All @@ -102,7 +102,7 @@ def test_submit_not_present_on_revisit(self):
self.wait_until_exists('.poll-results-wrapper')

self.go_to_page('Poll Functions')
self.assertRaises(NoSuchElementException, self.get_submit)
self.assertRaises(NoSuchElementException, self.browser.find_element_by_css_selector, 'button.submit')

def test_poll_options_a11y(self):
"""
Expand Down Expand Up @@ -264,7 +264,7 @@ def test_submit_not_present_on_revisit(self):
self.wait_until_exists('.poll-results-wrapper')

self.go_to_page('Poll Functions')
self.assertRaises(NoSuchElementException, self.get_submit)
self.assertRaises(NoSuchElementException, self.browser.find_element_by_css_selector, 'button.submit')

def test_survey_radio_ids_unique(self):
"""
Expand Down

0 comments on commit 626b952

Please sign in to comment.