From 0250fcf20f3875891b5aa137848b4dc8dd33f42f Mon Sep 17 00:00:00 2001 From: Steve Agalloco Date: Sun, 20 Jun 2010 11:46:58 +0800 Subject: [PATCH] fixed typos in oauth_test --- test/twitter/oauth_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/twitter/oauth_test.rb b/test/twitter/oauth_test.rb index b4304ebc2..15ba46f70 100644 --- a/test/twitter/oauth_test.rb +++ b/test/twitter/oauth_test.rb @@ -8,12 +8,12 @@ class OAuthTest < Test::Unit::TestCase twitter.csecret.should == 'secret' end - should "set autorization path to '/oauth/authorize' by default" do + should "set authorization path to '/oauth/authorize' by default" do twitter = Twitter::OAuth.new('token', 'secret') twitter.consumer.options[:authorize_path].should == '/oauth/authorize' end - should "set autorization path to '/oauth/authenticate' if sign_in_with_twitter" do + should "set authorization path to '/oauth/authenticate' if sign_in_with_twitter" do twitter = Twitter::OAuth.new('token', 'secret', :sign_in => true) twitter.consumer.options[:authorize_path].should == '/oauth/authenticate' end