summaryrefslogtreecommitdiffstats
path: root/Lib/unittest
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2016-08-26 04:11:50 (GMT)
committerRaymond Hettinger <python@rcn.com>2016-08-26 04:11:50 (GMT)
commit7ea386e56e76deb2ceeb87c0ac4b346e24cd82e1 (patch)
tree3fb6addb93c15d15b06bc8ba7dfc37a91e560b9c /Lib/unittest
parent39e9af6bb3fdd0dd59292b5a014d398956f0b7cd (diff)
downloadcpython-7ea386e56e76deb2ceeb87c0ac4b346e24cd82e1.zip
cpython-7ea386e56e76deb2ceeb87c0ac4b346e24cd82e1.tar.gz
cpython-7ea386e56e76deb2ceeb87c0ac4b346e24cd82e1.tar.bz2
Issue 19504: Change "customise" to "customize" American spelling.
Diffstat (limited to 'Lib/unittest')
-rw-r--r--Lib/unittest/test/test_discovery.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/test/test_discovery.py b/Lib/unittest/test/test_discovery.py
index bb196e6..8f4017f 100644
--- a/Lib/unittest/test/test_discovery.py
+++ b/Lib/unittest/test/test_discovery.py
@@ -275,7 +275,7 @@ class TestDiscovery(unittest.TestCase):
self.assertEqual(Module.load_tests_args,
[(loader, [], 'test*.py')])
- def test_find_tests_customise_via_package_pattern(self):
+ def test_find_tests_customize_via_package_pattern(self):
# This test uses the example 'do-nothing' load_tests from
# https://docs.python.org/3/library/unittest.html#load-tests-protocol
# to make sure that that actually works.