X Tutup
Skip to content

Commit ac3ef20

Browse files
committed
Use correct length
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
1 parent 1b6fba8 commit ac3ef20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/test/test_autocomplete.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ def test_completions_are_unicode(self):
281281

282282
@unittest.skipIf(py3, "in Python 3 invalid identifiers are passed through")
283283
def test_ignores_nonascii_encodable(self):
284-
self.assertSetEqual(self.com.matches(1, 'abc', locals_={'abcß': 10}),
284+
self.assertSetEqual(self.com.matches(3, 'abc', locals_={'abcß': 10}),
285285
set())
286286

287287

0 commit comments

Comments
 (0)
X Tutup