We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7006770 commit 33c0a89Copy full SHA for 33c0a89
ietf/meeting/tests_js.py
@@ -1260,7 +1260,7 @@ def _assert_ietf_tz_correct(meetings, tz):
1260
# to inherit Django's settings.TIME_ZONE but I don't know whether that's guaranteed to be consistent.
1261
# To avoid test fragility, ask Moment what it considers local and expect that.
1262
local_tz = self.driver.execute_script('return moment.tz.guess();')
1263
- local_tz_opt = tz_select_input.find_element(By.CSS_SELECTOR, 'option[value=%s]' % local_tz)
+ local_tz_opt = tz_select_input.find_element(By.CSS_SELECTOR, 'option[value="%s"]' % local_tz)
1264
local_tz_bottom_opt = tz_select_bottom_input.find_element(By.CSS_SELECTOR, 'option[value="%s"]' % local_tz)
1265
1266
# Should start off in local time zone
0 commit comments