Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/_test_msui/test_msui.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def test_milestone_url(self):
with urlopen(self.window.milestone_url) as f:
text = f.read().decode("utf-8")
expected_version = __version__
pattern = rf'value="is:closed milestone:{re.escape(expected_version)} "'
pattern = rf'value="is:closed milestone:{re.escape(expected_version)}"'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is also wrong in stable. Because github got an update. This test finds updates on github.

please send this to stable

assert re.search(pattern, text), f"Expected milestone format not found: {expected_version}"


Expand Down
Loading