Skip to content
Snippets Groups Projects
Commit 4a137651 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Fix merge request closed filter. Fixed one more test

parent be817c53
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -66,6 +66,10 @@ class MergeRequest < ActiveRecord::Base
 
scope :merged, -> { with_state(:merged) }
 
# Closed scope for merge request should return
# both merged and closed mr's
scope :closed, -> { with_states(:closed, :merged) }
class << self
def find_all_by_branch(branch_name)
where("source_branch LIKE :branch OR target_branch LIKE :branch", branch: branch_name)
Loading
Loading
Loading
Loading
@@ -136,7 +136,9 @@ describe "On a merge request diff", js: true, focus: true do
end
 
it "should be removed when canceled" do
first(".js-close-discussion-note-form").trigger("click")
within(".file form[rel$='4735dfc552ad7bf15ca468adc3cad9d05b624490_185_185']") do
find(".js-close-discussion-note-form").trigger("click")
end
 
should have_no_css(".js-temp-notes-holder")
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment