diff options
| author | Matt Boersma <matt@sprout.org> | 2009-04-17 16:28:13 +0000 |
|---|---|---|
| committer | Matt Boersma <matt@sprout.org> | 2009-04-17 16:28:13 +0000 |
| commit | c17547ac50959f7df9e2b8288bae55806c433782 (patch) | |
| tree | 5b55b7a766c857c7c1f60f49fcc6fabe5e28d180 /tests | |
| parent | 5acc58360d8eee377d7c1d4c3d80ab28bc541633 (diff) | |
[1.0.X] Fixed introspection test case which caused "ORA-00972: identifier is too long" errors against Oracle.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10581 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/regressiontests/introspection/tests.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/regressiontests/introspection/tests.py b/tests/regressiontests/introspection/tests.py index 9941c57419..7072dc8e9e 100644 --- a/tests/regressiontests/introspection/tests.py +++ b/tests/regressiontests/introspection/tests.py @@ -50,10 +50,10 @@ class IntrospectionTests(TestCase): def test_django_table_names(self): cursor = connection.cursor() - cursor.execute('CREATE TABLE django_introspection_test_table (id INTEGER);'); + cursor.execute('CREATE TABLE django_ixn_test_table (id INTEGER);'); tl = connection.introspection.django_table_names() - cursor.execute("DROP TABLE django_introspection_test_table;") - self.assert_('django_introspection_testcase_table' not in tl, + cursor.execute("DROP TABLE django_ixn_test_table;") + self.assert_('django_ixn_testcase_table' not in tl, "django_table_names() returned a non-Django table") def test_installed_models(self): @@ -83,9 +83,9 @@ class IntrospectionTests(TestCase): if settings.DATABASE_ENGINE.startswith('postgresql'): def test_postgresql_real_type(self): cursor = connection.cursor() - cursor.execute("CREATE TABLE django_introspection_real_test_table (number REAL);") - desc = connection.introspection.get_table_description(cursor, 'django_introspection_real_test_table') - cursor.execute('DROP TABLE django_introspection_real_test_table;') + cursor.execute("CREATE TABLE django_ixn_real_test_table (number REAL);") + desc = connection.introspection.get_table_description(cursor, 'django_ixn_real_test_table') + cursor.execute('DROP TABLE django_ixn_real_test_table;') self.assertEqual(datatype(desc[0][1]), 'FloatField') def test_get_relations(self): |
