Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'origin/master' into fix-issue-34828
# Conflicts:
#	Lib/sqlite3/test/dump.py
  • Loading branch information
itssme committed Jul 3, 2021
commit 1ac20b0825f256706bff5b48e86e80ed0621e3e4
6 changes: 3 additions & 3 deletions Lib/sqlite3/test/dump.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def test_table_dump(self):
[self.assertEqual(expected_sqls[i], actual_sqls[i])
for i in range(len(expected_sqls))]

def CheckIterdumpAutoincrement(self):
def test_dump_autoincrement(self):
expected_sqls = [
"""CREATE TABLE "posts" (id int primary key);"""
,
Expand Down Expand Up @@ -78,7 +78,7 @@ def CheckIterdumpAutoincrement(self):
[self.assertEqual(expected_sqls[i], actual_sqls[i])
for i in range(len(expected_sqls))]

def CheckIterdumpAutoincrementCreateNewDB(self):
def test_dump_autoincrement_create_new_db(self):
old_db = [
"BEGIN TRANSACTION ;"
,
Expand Down Expand Up @@ -110,7 +110,7 @@ def CheckIterdumpAutoincrementCreateNewDB(self):
cu2.close()
cx2.close()

def CheckUnorderableRow(self):
def test_unorderable_row(self):
# iterdump() should be able to cope with unorderable row types (issue #15545)
class UnorderableRow:
def __init__(self, cursor, row):
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.