We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd0b9ce commit 35a17e7Copy full SHA for 35a17e7
Lib/test/test_sqlite3/test_cli.py
@@ -272,8 +272,8 @@ def test_completion_order(self):
272
if line.startswith(self.PS1)]
273
self.assertEqual(len(indices), 2)
274
start, end = indices[0] + 1, indices[1]
275
- candidates = list(map(str.strip, output_lines[start:end]))
276
- self.assertEqual(candidates, list(KEYWORDS))
+ candidates = tuple(map(str.strip, output_lines[start:end]))
+ self.assertEqual(candidates, KEYWORDS)
277
278
279
if __name__ == "__main__":
0 commit comments