Skip to content
This repository was archived by the owner on Apr 14, 2022. It is now read-only.

Commit 2fdece6

Browse files
author
MikhailArkhipov
committed
Test fix
1 parent 4d04edb commit 2fdece6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Analysis/Engine/Test/LanguageServerTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ public Task<IReadOnlyDictionary<string, object>> ExecuteCommand(string command,
10231023

10241024
if (command == _typeId.ToString()) {
10251025
var res = new List<string>();
1026-
foreach (var m in entry.Analysis.GetAllAvailableMembers(location)) {
1026+
foreach (var m in entry.Analysis.GetAllMembers(location)) {
10271027
if (m.Values.Any(v => v.MemberType == PythonMemberType.Constant && v.TypeId == _typeId)) {
10281028
res.Add(m.Name);
10291029
}

0 commit comments

Comments
 (0)