From 409a6aebc7c96d87b5f7fe3f3a491b43e29a9a7c Mon Sep 17 00:00:00 2001 From: Sarah Mei & Tim Frazer Date: Mon, 14 Nov 2011 17:41:54 -0800 Subject: [PATCH] Fix invitation controller spec on postgres --- spec/controllers/invitations_controller_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/controllers/invitations_controller_spec.rb b/spec/controllers/invitations_controller_spec.rb index 2b56db0da..be3ca2447 100644 --- a/spec/controllers/invitations_controller_spec.rb +++ b/spec/controllers/invitations_controller_spec.rb @@ -83,7 +83,7 @@ describe InvitationsController do end it "shows an error if there's no such invitation token" do - get :email, :invitation_token => 12345 + get :email, :invitation_token => "12345" response.should render_template(:token_not_found) end end