From 7de5fee3ada035987b0044d7d5660a505c7daf82 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Fri, 17 May 2019 16:09:23 +0200 Subject: [PATCH] Minor change, because of typeshed changes --- test/test_api/test_full_name.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_api/test_full_name.py b/test/test_api/test_full_name.py index e4d9d34d..9956e6be 100644 --- a/test/test_api/test_full_name.py +++ b/test/test_api/test_full_name.py @@ -111,4 +111,4 @@ def test_os_path(Script): def test_os_issues(Script): """Issue #873""" - assert not Script('import os\nos.nt''').completions() + assert [c.name for c in Script('import os\nos.nt''').completions()] == ['nt']