Skip to content

Commit 34cfc78

Browse files
committed
Fix 'KEYWORDS' not found
1 parent a493ad3 commit 34cfc78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_sqlite3/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ def test_completion_order(self):
273273
self.assertEqual(len(indices), 2)
274274
start, end = indices[0] + 1, indices[1]
275275
candidates = tuple(map(str.strip, output_lines[start:end]))
276-
self.assertEqual(candidates, KEYWORDS)
276+
self.assertEqual(candidates, SQLITE_KEYWORDS)
277277

278278

279279
if __name__ == "__main__":

0 commit comments

Comments
 (0)