Skip to content

Commit 79d97fe

Browse files
committed
updated file contents
1 parent 6b4f3b4 commit 79d97fe

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

src/test/extension.autocomplete.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ suite('Autocomplete', () => {
6565
const position = new vscode.Position(30, 4);
6666
return vscode.commands.executeCommand('vscode.executeCompletionItemProvider', textDocument.uri, position);
6767
}).then((list: { isIncomplete: boolean, items: vscode.CompletionItem[] }) => {
68-
assert.notEqual(list.items.filter(item => item.label === 'description').length, 0, 'description not found');
6968
assert.notEqual(list.items.filter(item => item.label === 'method1').length, 0, 'method1 not found');
7069
assert.notEqual(list.items.filter(item => item.label === 'method2').length, 0, 'method2 not found');
7170
}).then(done, done);

src/test/pythonFiles/autocomp/one.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,4 @@ def method2(self):
2828
pass
2929

3030
obj = Class1()
31-
print(obj.description)
32-
print(obj.method1)
31+
obj.method1()

0 commit comments

Comments
 (0)