1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

[1.9.x] Fixed #25755 -- Unified spelling of "website".

Backport of 1f8dad6915 from master
This commit is contained in:
Agnieszka Lasyk
2015-11-15 13:05:15 +01:00
committed by Tim Graham
parent 5234c9937c
commit b3389956c9
33 changed files with 55 additions and 55 deletions

View File

@@ -757,7 +757,7 @@ TestCase
.. class:: TestCase()
This class provides some additional capabilities that can be useful for testing
Web sites.
websites.
Converting a normal :class:`unittest.TestCase` to a Django :class:`TestCase` is
easy: Just change the base class of your test from ``'unittest.TestCase'`` to
@@ -1047,7 +1047,7 @@ Fixture loading
.. attribute:: TransactionTestCase.fixtures
A test case for a database-backed Web site isn't much use if there isn't any
A test case for a database-backed website isn't much use if there isn't any
data in the database. To make it easy to put test data into the database,
Django's custom ``TransactionTestCase`` class provides a way of loading
**fixtures**.