Skip to content

Commit

Permalink
Correct error in spec description
Browse files Browse the repository at this point in the history
  • Loading branch information
ianwhite committed Sep 18, 2009
1 parent c507145 commit 7491225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/controllers/users_controller_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
params_from(:get, "/users/dave").should == {:controller => "users", :action => "show", :id => "dave"}
end

it "should generate params { :controller => 'users', action => 'edit', id => '1' } from GET /users/dave;edit" do
it "should generate params { :controller => 'users', action => 'edit', id => '1' } from GET /users/dave/edit" do
params_from(:get, "/users/dave/edit").should == {:controller => "users", :action => "edit", :id => "dave"}
end

Expand Down

0 comments on commit 7491225

Please sign in to comment.