Remove focus from specs

This commit is contained in:
Neil Lalonde
2019-10-16 11:59:42 -04:00
parent a37dafdd4d
commit 61f6a6e836
2 changed files with 2 additions and 2 deletions

View File

@ -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],