Skip to content

Commit

Permalink
Use built in fluent validation method
Browse files Browse the repository at this point in the history
  • Loading branch information
drewnoakes committed Apr 13, 2023
1 parent 35f7427 commit 876e5e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void It_produces_ref_assembly_for_appropriate_frameworks(string targetFra
.Should()
.Pass();
var filePath = Path.Combine(testAsset.Path, testProject.Name, "obj", "Debug", targetFramework, "ref", $"{testProject.Name}.dll");
File.Exists(filePath).Should().Be(true);
File.Exists(filePath).Should().BeTrue();
}
}
}

0 comments on commit 876e5e9

Please sign in to comment.