Skip to content

Commit 9cfc3ea

Browse files
pirjJonRowe
authored andcommitted
Fix a spec on Rails edge
E.g. https://github.com/rspec/rspec-rails/actions/runs/4737397779/jobs/8410153979?pr=2664 expected /Title can't be blank/, got #<RSpec::Expectations::ExpectationNotMetError: expected #<Post:0x000055d41c8941d0 @validation_context=nil, @errors=#<ActiveModel::Errors [#<ActiveModel::Error attribute=title, type=blank, options={}>]>> to be valid, but got errors: Title can’t be blank> The difference is in the typographic quote: rails/rails@da82e58#diff-78b236371af76b069c91eedb316bb68bfe71ab6bd1850f7c5a4c9291eaa13c79R16
1 parent f56d3c7 commit 9cfc3ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/rspec/rails/matchers/be_valid_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def errors(_)
4040
it "includes the error messages in the failure message" do
4141
expect {
4242
expect(post).to be_valid
43-
}.to raise_exception(/Title can't be blank/)
43+
}.to raise_exception(/Title can.t be blank/)
4444
end
4545

4646
it "includes the error messages for simple implementations of error messages" do

0 commit comments

Comments
 (0)