diff --git a/spec/components/discourse_diff_spec.rb b/spec/components/discourse_diff_spec.rb index d1158aef206..d8683decc85 100644 --- a/spec/components/discourse_diff_spec.rb +++ b/spec/components/discourse_diff_spec.rb @@ -76,7 +76,7 @@ describe DiscourseDiff do expect(DiscourseDiff.new(before, after).side_by_side_html).to eq("
this is a paragraph
this is a great paragraph
this is one paragraph
here is yet another
" after = "this is one great paragraph
here is another
" got = DiscourseDiff.new(before, after).side_by_side_html diff --git a/spec/components/onpdiff_spec.rb b/spec/components/onpdiff_spec.rb index 60b40397203..f59bd80cb0e 100644 --- a/spec/components/onpdiff_spec.rb +++ b/spec/components/onpdiff_spec.rb @@ -49,7 +49,7 @@ describe ONPDiff do expect(ONPDiff.new("abc", "acd").paragraph_diff).to eq([["a", :common], ["b", :delete], ["c", :common], ["d", :add]]) end - it "pairs as many elements as possible", :focus do + it "pairs as many elements as possible" do expect(ONPDiff.new("abcd", "abef").paragraph_diff).to eq([ ["a", :common], ["b", :common], ["e", :add], ["c", :delete],