Commit 52bdcdff authored by Patrick Derichs's avatar Patrick Derichs

Use match_array instead of include

parent 1ebef4aa
......@@ -206,7 +206,7 @@ describe Boards::IssuesController do
'success' => true
)
expect(json_response['issues'].pluck('id')).to include(*move_issues_params[:ids])
expect(json_response['issues'].pluck('id')).to match_array(move_issues_params[:ids])
end
list_issues user: requesting_user, board: board, list: list2
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment