diff options
author | Kazuhiro NISHIYAMA <[email protected]> | 2020-07-28 19:51:07 +0900 |
---|---|---|
committer | Kazuhiro NISHIYAMA <[email protected]> | 2020-07-28 19:51:54 +0900 |
commit | 946cd6c5348d7dd12ecc41e79c3ca9803d2ca7f0 (patch) | |
tree | 2ddf4483af71549f042973a94d656bfc23d246ed /test/rdoc/test_rdoc_markup_to_markdown.rb | |
parent | f44114b502f4ae793f95d0be14b094cfe7c4c0e7 (diff) |
Use https instead of http
Diffstat (limited to 'test/rdoc/test_rdoc_markup_to_markdown.rb')
-rw-r--r-- | test/rdoc/test_rdoc_markup_to_markdown.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/rdoc/test_rdoc_markup_to_markdown.rb b/test/rdoc/test_rdoc_markup_to_markdown.rb index 4d3a005381..c8c5fd4d52 100644 --- a/test/rdoc/test_rdoc_markup_to_markdown.rb +++ b/test/rdoc/test_rdoc_markup_to_markdown.rb @@ -363,9 +363,9 @@ words words words words def test_convert_TIDYLINK result = @to.convert \ - '{DSL}[http://en.wikipedia.org/wiki/Domain-specific_language]' + '{DSL}[https://en.wikipedia.org/wiki/Domain-specific_language]' - expected = "[DSL](http://en.wikipedia.org/wiki/Domain-specific_language)\n" + expected = "[DSL](https://en.wikipedia.org/wiki/Domain-specific_language)\n" assert_equal expected, result end |