From 566d25ea75bdfcf5c7decc5a3d1008a3da1956e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ram=C3=B3n?= Date: Sun, 16 Feb 2014 12:17:36 -0500 Subject: [PATCH] fix typos in posts_controller_spec. fixing 'suceeds' typo. --- spec/controllers/posts_controller_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/controllers/posts_controller_spec.rb b/spec/controllers/posts_controller_spec.rb index 1780423346c..6a423f64383 100644 --- a/spec/controllers/posts_controller_spec.rb +++ b/spec/controllers/posts_controller_spec.rb @@ -21,7 +21,7 @@ describe PostsController do response.should be_forbidden end - it 'suceeds' do + it 'succeeds' do xhr :get, :show, id: post.id response.should be_success end @@ -62,7 +62,7 @@ describe PostsController do response.should be_forbidden end - it 'suceeds' do + it 'succeeds' do Post.any_instance.expects(:reply_history) xhr :get, :reply_history, id: post.id response.should be_success