Fix botched copy/paste

This commit is contained in:
Michael Miller 2019-03-04 18:30:18 -07:00
parent e7441df159
commit 1090a7f2f3
2 changed files with 4 additions and 4 deletions

View file

@ -191,7 +191,7 @@ describe Spectator::Matchers::EndWithMatcher do
last = "baz"
partial = new_partial(value)
matcher = Spectator::Matchers::EndWithMatcher.new(last)
matcher.message(partial).should contain("#starts_with?")
matcher.message(partial).should contain("#ends_with?")
end
end
@ -247,7 +247,7 @@ describe Spectator::Matchers::EndWithMatcher do
last = "baz"
partial = new_partial(value)
matcher = Spectator::Matchers::EndWithMatcher.new(last)
matcher.negated_message(partial).should contain("#starts_with?")
matcher.negated_message(partial).should contain("#ends_with?")
end
end