Skip to content

Commit 3a01437

Browse files
authored
Fix failures
1 parent b545994 commit 3a01437

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/EditorFeatures/CSharpTest2/Recommendations/EventKeywordRecommenderTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ class C { }
3131
}
3232

3333
[Fact]
34-
public async Task TestAfterGlobalStatement()
34+
public async Task TestAfterGlobalStatement_Interactive()
3535
{
36-
await VerifyKeywordAsync(
36+
await VerifyKeywordAsync(SourceCodeKind.Script,
3737
"""
3838
System.Console.WriteLine();
3939
$$

src/EditorFeatures/CSharpTest2/Recommendations/PrivateKeywordRecommenderTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ class C { }
2929
}
3030

3131
[Fact]
32-
public async Task TestAfterGlobalStatement()
32+
public async Task TestAfterGlobalStatement_Interactive()
3333
{
34-
await VerifyKeywordAsync(
34+
await VerifyKeywordAsync(SourceCodeKind.Script,
3535
"""
3636
System.Console.WriteLine();
3737
$$

src/EditorFeatures/CSharpTest2/Recommendations/VolatileKeywordRecommenderTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ class C { }
2929
}
3030

3131
[Fact]
32-
public async Task TestAfterGlobalStatement()
32+
public async Task TestAfterGlobalStatement_Interactive()
3333
{
34-
await VerifyKeywordAsync(
34+
await VerifyKeywordAsync(SourceCodeKind.Script,
3535
"""
3636
System.Console.WriteLine();
3737
$$

0 commit comments

Comments
 (0)