Add comment which is displayed during the test run.

This commit is contained in:
Anthony Tuininga 2018-11-29 17:19:20 -07:00
parent 7ab01bb1b9
commit e4cef63804

View File

@ -167,6 +167,7 @@ class TestCursor(BaseTestCase):
self.assertEqual(count, len(rows)) self.assertEqual(count, len(rows))
def testExecuteManyWithInputSizesWrong(self): def testExecuteManyWithInputSizesWrong(self):
"test executing a statement multiple times (with input sizes wrong)"
cursor = self.connection.cursor() cursor = self.connection.cursor()
cursor.setinputsizes(cx_Oracle.NUMBER) cursor.setinputsizes(cx_Oracle.NUMBER)
data = [[decimal.Decimal("25.8")], [decimal.Decimal("30.0")]] data = [[decimal.Decimal("25.8")], [decimal.Decimal("30.0")]]