summaryrefslogtreecommitdiff
path: root/docs/topics/testing
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2015-11-29 08:29:46 -0800
committerTim Graham <timograham@gmail.com>2015-12-01 08:03:16 -0500
commitbf76cf07e0e0713020974f47dacfaddcedbe1abf (patch)
tree25d3659624b41be8315d418c577a7b529b4d8ae6 /docs/topics/testing
parentb4074102328180dd53ecc5a03b0afa1322024036 (diff)
[1.9.x] Fixed #25778 -- Updated docs links to use https when available.
Backport of 7aabd6238028f4bb78d0687bbccc97bcf634e28b from master
Diffstat (limited to 'docs/topics/testing')
-rw-r--r--docs/topics/testing/_images/django_unittest_classes_hierarchy.graffle2
-rw-r--r--docs/topics/testing/tools.txt6
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/topics/testing/_images/django_unittest_classes_hierarchy.graffle b/docs/topics/testing/_images/django_unittest_classes_hierarchy.graffle
index c0edad721d..e66c71d63e 100644
--- a/docs/topics/testing/_images/django_unittest_classes_hierarchy.graffle
+++ b/docs/topics/testing/_images/django_unittest_classes_hierarchy.graffle
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "https://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ActiveLayerIndex</key>
diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt
index 97bc136a61..11e53a409b 100644
--- a/docs/topics/testing/tools.txt
+++ b/docs/topics/testing/tools.txt
@@ -73,7 +73,7 @@ Note a few important things about how the test client works:
This is incorrect::
- >>> c.get('http://www.example.com/login/')
+ >>> c.get('https://www.example.com/login/')
The test client is not capable of retrieving Web pages that are not
powered by your Django project. If you need to retrieve other Web pages,
@@ -940,7 +940,7 @@ out the `full reference`_ for more details.
.. _Selenium: http://seleniumhq.org/
.. _selenium package: https://pypi.python.org/pypi/selenium
.. _full reference: http://selenium-python.readthedocs.org/en/latest/api.html
-.. _Firefox: http://www.mozilla.com/firefox/
+.. _Firefox: https://www.mozilla.com/firefox/
.. note::
@@ -973,7 +973,7 @@ out the `full reference`_ for more details.
use cases. Please refer to the `Selenium FAQ`_ and
`Selenium documentation`_ for more information.
- .. _Selenium FAQ: http://code.google.com/p/selenium/wiki/FrequentlyAskedQuestions#Q:_WebDriver_fails_to_find_elements_/_Does_not_block_on_page_loa
+ .. _Selenium FAQ: https://code.google.com/p/selenium/wiki/FrequentlyAskedQuestions#Q:_WebDriver_fails_to_find_elements_/_Does_not_block_on_page_loa
.. _Selenium documentation: http://seleniumhq.org/docs/04_webdriver_advanced.html#explicit-waits
Test cases features