Actions
Patch #33100
closedFix a test - Issue watchers are not always sorted by id
Start date:
Due date:
% Done:
0%
Estimated time:
Description
Hello
Could you please apply this tiny patch?
Currently, when running issues_controller tests, returned issue-watchers are not always sorted by id, which may break the tests.
line 5245 in class IssuesControllerTest
- assert_equal [3, 10], issue.watcher_user_ids
+ assert_equal [3, 10], issue.watcher_user_ids.sort
Thank you for your work
Vincent
Files
Related issues
Updated by Go MAEDA almost 5 years ago
- Related to Feature #4511: Allow adding user groups as watchers for issues added
Updated by Go MAEDA almost 5 years ago
- Status changed from New to Closed
- Assignee set to Go MAEDA
Committed the fix as a part of #4511. Thank you for detecting and fixing the issue.
Actions