diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-05-21 12:57:11 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-05-21 12:57:11 +0000 |
commit | 596366b062863ea8654536493480437208fcc965 (patch) | |
tree | f37afda5dbc026ab9ec72e3ac166d853fac45e1c /lib/plugins | |
parent | f4637c38b4733535aa3c34876f206840761b0a14 (diff) | |
download | redmine-596366b062863ea8654536493480437208fcc965.tar.gz redmine-596366b062863ea8654536493480437208fcc965.zip |
upgrade mocha 0.14 and remove deprecation warning
<pre>
Mocha deprecation warning: Change `require 'mocha'` to `require 'mocha/setup'`.
</pre>
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11896 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/plugins')
-rw-r--r-- | lib/plugins/open_id_authentication/test/test_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/open_id_authentication/test/test_helper.rb b/lib/plugins/open_id_authentication/test/test_helper.rb index 43216e1ef..cb76ceddc 100644 --- a/lib/plugins/open_id_authentication/test/test_helper.rb +++ b/lib/plugins/open_id_authentication/test/test_helper.rb @@ -8,7 +8,7 @@ gem 'actionpack' require 'action_controller' gem 'mocha' -require 'mocha' +require 'mocha/setup' gem 'ruby-openid' require 'openid' |