Skip to content

Commit 7ee361d

Browse files
authored
Merge pull request #9456 from tmeschter/240429-ReEnableUnitTests
Re-enable unit tests
2 parents 81f409b + 7ead0f5 commit 7ee361d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/Microsoft.VisualStudio.ProjectSystem.Managed.VS.UnitTests/ProjectSystem/VS/UpToDate/BuildUpToDateCheckTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1312,7 +1312,7 @@ Project is up-to-date.
13121312
""");
13131313
}
13141314

1315-
[Fact(Skip = "https://github.com/dotnet/project-system/issues/8642")]
1315+
[Fact]
13161316
public async Task IsUpToDateAsync_False_Kinds_InputNewerThanOutput_WithIgnoredKind()
13171317
{
13181318
var projectSnapshot = new Dictionary<string, IProjectRuleSnapshotModel>
@@ -1357,7 +1357,7 @@ await AssertNotUpToDateAsync(
13571357
ignoreKinds: "Ignored");
13581358
}
13591359

1360-
[Fact(Skip = "https://github.com/dotnet/project-system/issues/8642")]
1360+
[Fact]
13611361
public async Task IsUpToDateAsync_False_Kinds_InputNewerThanOutput_NoKindIgnored()
13621362
{
13631363
var projectSnapshot = new Dictionary<string, IProjectRuleSnapshotModel>
@@ -1406,7 +1406,7 @@ await AssertNotUpToDateAsync(
14061406
ignoreKinds: "");
14071407
}
14081408

1409-
[Fact(Skip = "https://github.com/dotnet/project-system/issues/8642")]
1409+
[Fact]
14101410
public async Task IsUpToDateAsync_True_Kinds_InputNewerThanOutput_WithIgnoredKind()
14111411
{
14121412
var projectSnapshot = new Dictionary<string, IProjectRuleSnapshotModel>
@@ -1452,7 +1452,7 @@ Project is up-to-date.
14521452
ignoreKinds: "Ignored");
14531453
}
14541454

1455-
[Fact(Skip = "https://github.com/dotnet/project-system/issues/8642")]
1455+
[Fact]
14561456
public async Task IsUpToDateAsync_True_Kinds_InputNewerThanOutput_NoKindIgnored()
14571457
{
14581458
var projectSnapshot = new Dictionary<string, IProjectRuleSnapshotModel>

0 commit comments

Comments
 (0)