Skip to content

Commit

Permalink
Meet your demise, 8.0 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nagilson committed Oct 7, 2022
1 parent bf3d53d commit 7be2640
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,6 @@ public void It_does_or_doesnt_imply_SelfContained_based_on_RuntimeIdentifier_and
[Theory]
[InlineData("net7.0", true)]
[InlineData("net7.0", false)]
[InlineData("net8.0", false)]
public void It_does_or_doesnt_warn_based_on_SelfContained_and_TargetFramework_breaking_RID_change(string targetFramework, bool defineSelfContained)
{
var runtimeIdentifier = EnvironmentInfo.GetCompatibleRid(targetFramework);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,9 +235,6 @@ public void DuplicateRuntimeIdentifiers()
[Theory]
[InlineData("net7.0", "true")]
[InlineData("net7.0", "")]
[InlineData("net8.0", "")]
[InlineData("net8.0", "true")]
[InlineData("net8.0", "false")]
public void RuntimeSpecificEnablesOrDisablesRuntimeIdentifierByDefaultBasedOnValueAndTargetFramework(string targetFramework, string runtimeSpecific)
{
TestAsset testAsset = _testAssetsManager.CreateTestProject(_testProject, identifier: $"{targetFramework}_{runtimeSpecific}")
Expand Down Expand Up @@ -270,7 +267,7 @@ public void RuntimeSpecificEnablesOrDisablesRuntimeIdentifierByDefaultBasedOnVal
}

[Theory]
[InlineData("net8.0")]
[InlineData("net7.0")]
public void RuntimeIdentifiersDisablesRuntimeSpecificFDDBehavior(string targetFramework)
{
var expectedRuntimeIdentifier = EnvironmentInfo.GetCompatibleRid(targetFramework);
Expand Down

0 comments on commit 7be2640

Please sign in to comment.