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:33:51 +0000 |
commit | 7bfd0796c2c3a21715bebae8abdc4f5c77f5094b (patch) | |
tree | 4b283f9c5fcf9021cc565ec51b7043f8bc232c86 /spec/controllers/request_controller_spec.rb | |
parent | 37bff4c0154b57b35a3194a9b31a9422496b955b (diff) |
Admin users clicking confirmation links
Fixes #446. See issue for details.
Diffstat (limited to 'spec/controllers/request_controller_spec.rb')
-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 93d3a2bbe..19938ac61 100644 --- a/spec/controllers/request_controller_spec.rb +++ b/spec/controllers/request_controller_spec.rb @@ -637,7 +637,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 |