summaryrefslogtreecommitdiff
path: root/tests/custom_lookups
diff options
context:
space:
mode:
authorSimon Charette <charettes@users.noreply.github.com>2017-10-06 12:47:08 -0400
committerTim Graham <timograham@gmail.com>2017-10-06 12:47:08 -0400
commit9d93dff33338c90a55f7158fbbe0d82e88e13fa3 (patch)
treee82f2500e84877ddf0aa303a0756cf01cf8e6a1f /tests/custom_lookups
parent7d8d630e37209eba672d5382cc2effe192ab2510 (diff)
downloaddjango-9d93dff33338c90a55f7158fbbe0d82e88e13fa3.tar.gz
Fixed #28665 -- Change some database exceptions to NotImplementedError per PEP 249.
Diffstat (limited to 'tests/custom_lookups')
-rw-r--r--tests/custom_lookups/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/custom_lookups/tests.py b/tests/custom_lookups/tests.py
index d39ebe6cdc..bdb27a224a 100644
--- a/tests/custom_lookups/tests.py
+++ b/tests/custom_lookups/tests.py
@@ -319,7 +319,7 @@ class BilateralTransformTests(TestCase):
def test_bilateral_inner_qs(self):
with register_lookup(models.CharField, UpperBilateralTransform):
- msg = 'Bilateral transformations on nested querysets are not supported.'
+ msg = 'Bilateral transformations on nested querysets are not implemented.'
with self.assertRaisesMessage(NotImplementedError, msg):
Author.objects.filter(name__upper__in=Author.objects.values_list('name'))