Skip to content

Commit

Permalink
Correct test method names
Browse files Browse the repository at this point in the history
  • Loading branch information
brandenge authored Jan 20, 2023
1 parent 2d24856 commit 35f0f56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iteration/exercises/spec/select_pattern_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
sixth: "indigo",
seventh: "violet"
}
expected(greater_than_four).to eq(expected)
expect(greater_than_four).to eq(expected)
end

xit 'test 5' do
Expand Down Expand Up @@ -95,7 +95,7 @@
meals = ["chips and salsa", "chicken alfredo", "banana pudding"]
#Your Code Here

expected(two_words).to eq(["chicken alfredo", "banana pudding"])
expect(two_words).to eq(["chicken alfredo", "banana pudding"])
end

xit 'test 8' do
Expand Down

0 comments on commit 35f0f56

Please sign in to comment.