Ticket #13082: test_long_string_fix.diff

File test_long_string_fix.diff, 594 bytes (added by stvsmth, 14 years ago)
  • tests/regressiontests/backends/tests.py

     
    3434            c.execute('INSERT INTO ltext VALUES (%s)',[long_str])
    3535            c.execute('SELECT text FROM ltext')
    3636            row = c.fetchone()
     37            self.assertEquals(long_str, row[0].read())
    3738            c.execute('DROP TABLE ltext')
    38             self.assertEquals(long_str, row[0].read())
    3939
    4040class DateQuotingTest(TestCase):
    4141
Back to Top