aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapters/mysql2/sp_test.rb
diff options
context:
space:
mode:
authorYoshiyuki Hirano <yhirano@me.com>2017-08-22 08:54:47 +0900
committerYoshiyuki Hirano <yhirano@me.com>2017-08-22 11:43:33 +0900
commitc7641eb29b30b4cab61da3a0cfd6e4154f41a79b (patch)
tree388c872512d2bd18772100f6879e62cfe86c1dbf /activerecord/test/cases/adapters/mysql2/sp_test.rb
parent3580edc9faf5cc0a0e467911d0a4dc4faf153709 (diff)
downloadrails-c7641eb29b30b4cab61da3a0cfd6e4154f41a79b.tar.gz
rails-c7641eb29b30b4cab61da3a0cfd6e4154f41a79b.tar.bz2
rails-c7641eb29b30b4cab61da3a0cfd6e4154f41a79b.zip
Update links to use https instead of http [ci skip]
Diffstat (limited to 'activerecord/test/cases/adapters/mysql2/sp_test.rb')
-rw-r--r--activerecord/test/cases/adapters/mysql2/sp_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/adapters/mysql2/sp_test.rb b/activerecord/test/cases/adapters/mysql2/sp_test.rb
index 47cedc5edf..7b6dce71e9 100644
--- a/activerecord/test/cases/adapters/mysql2/sp_test.rb
+++ b/activerecord/test/cases/adapters/mysql2/sp_test.rb
@@ -17,7 +17,7 @@ class Mysql2StoredProcedureTest < ActiveRecord::Mysql2TestCase
# Test that MySQL allows multiple results for stored procedures
#
# In MySQL 5.6, CLIENT_MULTI_RESULTS is enabled by default.
- # http://dev.mysql.com/doc/refman/5.6/en/call.html
+ # https://dev.mysql.com/doc/refman/5.6/en/call.html
def test_multi_results
rows = @connection.select_rows("CALL ten();")
assert_equal 10, rows[0][0].to_i, "ten() did not return 10 as expected: #{rows.inspect}"