Restore old order for MR lists. Fix failing tests
This commit is contained in:
parent
4a137651ec
commit
99b6750e15
3 changed files with 3 additions and 3 deletions
|
@ -14,7 +14,7 @@ class MergeRequestsLoadContext < BaseContext
|
|||
end
|
||||
|
||||
merge_requests = merge_requests.page(params[:page]).per(20)
|
||||
merge_requests = merge_requests.includes(:author, :project).order("state, created_at desc")
|
||||
merge_requests = merge_requests.includes(:author, :project).order("created_at desc")
|
||||
|
||||
# Filter by specific assignee_id (or lack thereof)?
|
||||
if params[:assignee_id].present?
|
||||
|
|
|
@ -67,7 +67,7 @@ describe "On a merge request", js: true do
|
|||
end
|
||||
|
||||
# note added
|
||||
it { within(".js-main-target-form") { should have_content("This is awsome!") } }
|
||||
it { should have_content("This is awsome!") }
|
||||
|
||||
# reset form
|
||||
it { within(".js-main-target-form") { should have_no_field("note[note]", with: "This is awesome!") } }
|
||||
|
|
|
@ -66,7 +66,7 @@ describe "On the project wall", js: true do
|
|||
end
|
||||
|
||||
# note added
|
||||
it { within(".js-main-target-form") { should have_content("This is awsome!") } }
|
||||
it { should have_content("This is awsome!") }
|
||||
|
||||
# reset form
|
||||
it { within(".js-main-target-form") { should have_no_field("note[note]", with: "This is awesome!") } }
|
||||
|
|
Loading…
Reference in a new issue