Skip to content

Commit

Permalink
adodbapi: Merge single-line implicitly concatenated strings (#2242)
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam authored May 27, 2024
1 parent 371f784 commit 5e688a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions adodbapi/test/dbapi20.py
Original file line number Diff line number Diff line change
Expand Up @@ -453,12 +453,12 @@ def _paraminsert(self, cur):
self.assertEqual(
beers[0],
"Cooper's",
"cursor.fetchall retrieved incorrect data, or data inserted " "incorrectly",
"cursor.fetchall retrieved incorrect data, or data inserted incorrectly",
)
self.assertEqual(
beers[1],
"Victoria Bitter",
"cursor.fetchall retrieved incorrect data, or data inserted " "incorrectly",
"cursor.fetchall retrieved incorrect data, or data inserted incorrectly",
)
trouble = "thi%s :may ca%(u)se? troub:1e"
self.assertEqual(
Expand Down Expand Up @@ -541,7 +541,7 @@ def test_fetchone(self):
self.assertEqual(
cur.fetchone(),
None,
"cursor.fetchone should return None if a query retrieves " "no rows",
"cursor.fetchone should return None if a query retrieves no rows",
)
self.assertTrue(cur.rowcount in (-1, 0))

Expand Down

0 comments on commit 5e688a6

Please sign in to comment.