Ticket #6148: 6148-generic-schema-support-r12426.test-failures.mysql.txt

File 6148-generic-schema-support-r12426.test-failures.mysql.txt, 1.1 KB (added by Antti Kaihola, 14 years ago)

Django test suite failures which appear with the patch but not without it in r12426

Line 
1FAIL: Doctest: modeltests.schemas.models.__test__.API_TESTS
2----------------------------------------------------------------------
3Traceback (most recent call last):
4  File "/home/akaihola/django/django/test/_doctest.py", line 2180, in runTest
5    raise self.failureException(self.format_failure(new.getvalue()))
6AssertionError: Failed doctest test for modeltests.schemas.models.__test__.API_TESTS
7  File "/home/akaihola/django/tests/modeltests/schemas/models.py", line unknown line number, in API_TESTS
8
9----------------------------------------------------------------------
10File "/home/akaihola/django/tests/modeltests/schemas/models.py", line ?, in modeltests.schemas.models.__test__.API_TESTS
11Failed example:
12    if connection.introspection.table_name_converter(e._meta.db_table) in tables:
13        print "ok"
14    else:
15        print "schema=" + e._meta.db_schema
16        print "tables=%s" % tables
17Expected:
18    ok
19Got:
20    schema=test_schema
21    tables=[u'test_schema.schema_blog_entries', u'test_schema.schemas_comment']
22
23
24======================================================================
Back to Top