Skip to content

Commit

Permalink
debug tests
Browse files Browse the repository at this point in the history
  • Loading branch information
evemartin committed Apr 25, 2024
1 parent e66876a commit 9d1d944
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion game/end_to_end_tests/test_language_dropdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ def test_level_language_dropdown(self):
self.selenium.find_element(By.ID, "language_dropdown").click()
self.selenium.find_element(By.ID, f"language_dropdown_fr").click()

text_count = self.selenium.find_elements(By.XPATH, ("//*[contains(text(),'Move forwards')]")).size()
text_count = len(self.selenium.find_elements(By.XPATH, ("//*[contains(text(),'Move forwards')]")))
assert text_count == 0

0 comments on commit 9d1d944

Please sign in to comment.