From 48840cc9d1f9e20e5122518e2442c0baa08e9f4c Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Sat, 3 Mar 2012 17:41:32 +0000 Subject: [PATCH] Fixed a typo in r17638. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17639 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/introspection/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/regressiontests/introspection/tests.py b/tests/regressiontests/introspection/tests.py index 78928a15c4294..3bd9d60fa2739 100644 --- a/tests/regressiontests/introspection/tests.py +++ b/tests/regressiontests/introspection/tests.py @@ -91,7 +91,7 @@ def test_get_table_description_types(self): # Oracle forces null=True under the hood in some cases (see # https://docs.djangoproject.com/en/dev/ref/databases/#null-and-empty-strings) - # so its idea about null_ok in cursor.drescription is different from ours + # so its idea about null_ok in cursor.description is different from ours. @skipIfDBFeature('interprets_empty_strings_as_nulls') def test_get_table_description_nullable(self): cursor = connection.cursor()