diff options
| author | Jon Dufresne <jon.dufresne@gmail.com> | 2015-11-29 08:29:46 -0800 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-12-01 08:01:34 -0500 |
| commit | 7aabd6238028f4bb78d0687bbccc97bcf634e28b (patch) | |
| tree | 8bf67912d9154f1420574c9f22bc75d9fe2f2de0 /docs/topics/testing | |
| parent | 51a37213721e5689f17809990a9e7c38f1c8baf8 (diff) | |
Fixed #25778 -- Updated docs links to use https when available.
Diffstat (limited to 'docs/topics/testing')
| -rw-r--r-- | docs/topics/testing/_images/django_unittest_classes_hierarchy.graffle | 2 | ||||
| -rw-r--r-- | docs/topics/testing/tools.txt | 6 |
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 658c674bd2..6f8c1275c5 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, @@ -921,7 +921,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:: @@ -954,7 +954,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 |
