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

Commit 75f36b4

Browse files
committed
changing asser.inconclusive to [ignore]
1 parent eacbfac commit 75f36b4

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

src/Caching/Test/ClassesTests.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,8 @@ def __init__(self):
151151
Baseline.CompareToFile(BaselineFileName, json);
152152
}
153153

154-
[TestMethod, Priority(0)]
154+
[TestMethod, Priority(0)]
155+
[Ignore("Todo: super() persistence support, Asserts in debug due to no model found for super")]
155156
public async Task ClassesWithSuper() {
156157
const string code = @"
157158
class A:
@@ -164,8 +165,6 @@ def methodB(self):
164165
165166
b = B().methodB()
166167
";
167-
Assert.Inconclusive("Todo: super() persistence support");
168-
169168
var analysis = await GetAnalysisAsync(code);
170169
analysis.Should().HaveVariable("b").Which.Should().HaveType("super");
171170

src/LanguageServer/Test/GoToDefinitionTests.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,7 @@ def hello(self):
205205
}
206206

207207
[TestMethod, Priority(0)]
208+
[Ignore("Todo: super() multiple Inheritance support")]
208209
public async Task MultipleInheritanceSuperShouldWalkDecendants() {
209210
var testModPath = TestData.GetTestSpecificUri("test.py");
210211
const string code = @"
@@ -225,9 +226,6 @@ def child_func(self):
225226
pass
226227
227228
";
228-
229-
Assert.Inconclusive("Todo: super() multiple Inheritance support");
230-
231229
await CreateServicesAsync(PythonVersions.LatestAvailable3X);
232230
var rdt = Services.GetService<IRunningDocumentTable>();
233231

0 commit comments

Comments
 (0)