Ticket #13082: test_long_string_fix.diff
File test_long_string_fix.diff, 594 bytes (added by , 15 years ago) |
---|
-
tests/regressiontests/backends/tests.py
34 34 c.execute('INSERT INTO ltext VALUES (%s)',[long_str]) 35 35 c.execute('SELECT text FROM ltext') 36 36 row = c.fetchone() 37 self.assertEquals(long_str, row[0].read()) 37 38 c.execute('DROP TABLE ltext') 38 self.assertEquals(long_str, row[0].read())39 39 40 40 class DateQuotingTest(TestCase): 41 41