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
Test code nit
  • Loading branch information
erlend-aasland committed Jun 13, 2022
commit 7d7a654334995436c76f624fa123892615e91ca8
6 changes: 3 additions & 3 deletions Lib/test/test_sqlite3/test_dbapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -772,9 +772,9 @@ def test_execute_multiple_statements(self):

def test_execute_with_appended_comments(self):
dataset = (
"select 5+4; -- foo bar",
"select 5+4; --",
"select 5+4; /*", # Unclosed comments ending in \0 are skipped.
"select 1; -- foo bar",
"select 1; --",
"select 1; /*", # Unclosed comments ending in \0 are skipped.
"""
select 5+4;

Expand Down