diff options
author | Robin Houston <robin.houston@gmail.com> | 2012-03-13 00:23:12 +0000 |
---|---|---|
committer | Robin Houston <robin.houston@gmail.com> | 2012-03-13 00:23:12 +0000 |
commit | c6623db61b06cd496b9358171111a0ab86a03d5a (patch) | |
tree | a8b7c77d00442524bfa2c527704393d0022cb1d5 /spec/controllers | |
parent | f96a338d00106d7b6ad56e6368ebc9d61bbd02bd (diff) |
Admin users clicking confirmation links
Fixes #446. See issue for details.
Diffstat (limited to 'spec/controllers')
-rw-r--r-- | spec/controllers/request_controller_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/controllers/request_controller_spec.rb b/spec/controllers/request_controller_spec.rb index 9018f76fe..9add32f1e 100644 --- a/spec/controllers/request_controller_spec.rb +++ b/spec/controllers/request_controller_spec.rb @@ -631,7 +631,7 @@ describe RequestController, "when creating a new request" do it "should accept a public body parameter" do get :new, :public_body_id => @body.id - assigns[:info_request].public_body.should == @body + assigns[:info_request].public_body.should == @body response.should render_template('new') end |