summaryrefslogtreecommitdiff
path: root/test/csv
diff options
context:
space:
mode:
authorVivek Bharath Akupatni <apatniv@gmail.com>2023-02-12 00:35:51 -0500
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2023-02-21 19:31:29 +0900
commit2ac1efc0f32e9d5dfb3b606ce0b0bcc83a355aa0 (patch)
tree2f41f7a852b81cd0e16931a78e4f66519a22ba44 /test/csv
parent1a05d988d391d744d49c0143b90e46397ab29765 (diff)
[ruby/csv] Use https links instead of http
(https://github.com/ruby/csv/pull/274) https://github.com/ruby/csv/commit/e2a06929a8
Diffstat (limited to 'test/csv')
-rw-r--r--test/csv/parse/test_general.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/csv/parse/test_general.rb b/test/csv/parse/test_general.rb
index ff32eef6d3..8fc4d142ee 100644
--- a/test/csv/parse/test_general.rb
+++ b/test/csv/parse/test_general.rb
@@ -7,7 +7,7 @@ require_relative "../helper"
#
# Following tests are my interpretation of the
-# {CSV RCF}[http://www.ietf.org/rfc/rfc4180.txt]. I only deviate from that
+# {CSV RCF}[https://www.ietf.org/rfc/rfc4180.txt]. I only deviate from that
# document in one place (intentionally) and that is to make the default row
# separator <tt>$/</tt>.
#
@@ -75,7 +75,7 @@ class TestCSVParseGeneral < Test::Unit::TestCase
end
end
- # From: http://ruby-talk.org/cgi-bin/scat.rb/ruby/ruby-core/6496
+ # From: https://ruby-talk.org/cgi-bin/scat.rb/ruby/ruby-core/6496
def test_aras_edge_cases
[ [%Q{a,b}, ["a", "b"]],
[%Q{a,"""b"""}, ["a", "\"b\""]],