Skip to content

Commit 636e72a

Browse files
committed
Fix "render" typo on request specs generated via scaffold
As seen on other specs in the same file, the spec should read as: `it "renders a successful response" do` instead of: `it "render a successful response" do`
1 parent 2957838 commit 636e72a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/generators/rspec/scaffold/templates/request_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
end
5555
5656
describe "GET /edit" do
57-
it "render a successful response" do
57+
it "renders a successful response" do
5858
<%= file_name %> = <%= class_name %>.create! valid_attributes
5959
get <%= edit_helper.tr('@','') %>
6060
expect(response).to be_successful

0 commit comments

Comments
 (0)