From 7254a4b2fd93ccd15604df82d0e32eb126c426d8 Mon Sep 17 00:00:00 2001 From: Andy Holman Date: Mon, 13 Dec 2010 16:06:41 -0500 Subject: [PATCH] Fix space before parenthesis. --- spec/routing/routes_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/routing/routes_spec.rb b/spec/routing/routes_spec.rb index e7fbc5e..7329661 100644 --- a/spec/routing/routes_spec.rb +++ b/spec/routing/routes_spec.rb @@ -34,7 +34,7 @@ end it 'routes /list/:id to builds#latest_by_project' do - { :get => '/list/test-app' }.should route_to ( + { :get => '/list/test-app' }.should route_to( :controller => 'builds', :action => 'latest_by_project', :id => 'test-app'