Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/git/git-scm.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPierre-Etienne Poirot <pepoirot@gmx.com>2016-10-11 07:15:37 +0300
committerPierre-Etienne Poirot <pepoirot@gmx.com>2016-10-11 07:15:37 +0300
commit2cbf7b621be0570fad00660d210e250de188b148 (patch)
tree21cf1c315423935484c63ebd845a83cc05f58ace /test
parentdc3ae380e1eb312e70a64f4166a3ebf2375fd6eb (diff)
Update git-scm links to HTTPS.
Diffstat (limited to 'test')
-rw-r--r--test/functional/site_controller_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/site_controller_test.rb b/test/functional/site_controller_test.rb
index b04f85cf..33d4460d 100644
--- a/test/functional/site_controller_test.rb
+++ b/test/functional/site_controller_test.rb
@@ -9,18 +9,18 @@ class SiteControllerTest < ActionController::TestCase
test "whygitisbetterthanx.com should redirect to about page" do
get :redirect_wgibtx
- assert_redirected_to "http://git-scm.com/about"
+ assert_redirected_to "https://git-scm.com/about"
end
test "should redirect to the book page" do
get :redirect_book
- assert_redirected_to "http://git-scm.com/book"
+ assert_redirected_to "https://git-scm.com/book"
end
test "should redirect to any book page" do
@request.env['PATH_INFO'] = "/en/Git-Tools-Submodules"
get :redirect_book
- assert_redirected_to "http://git-scm.com/en/Git-Tools-Submodules"
+ assert_redirected_to "https://git-scm.com/en/Git-Tools-Submodules"
end
test "should get search page" do