Skip to content

Commit

Permalink
Tiny bit of test cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
daveaglick committed Dec 22, 2023
1 parent 3e4b620 commit 0d10c5e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TargetFramework>netcoreapp3.1</TargetFramework>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<WarningsNotAsErrors>NU1901;NU1902;NU1903;NU1904;CA1724</WarningsNotAsErrors>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion tests/Statiq.Web.Tests/Pipelines/ContentFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace Statiq.Web.Tests.Pipelines
[TestFixture]
public class ContentFixture : BaseFixture
{
public class ExecuteTests : DataFixture
public class ExecuteTests : ContentFixture
{
// https://github.com/statiqdev/Statiq.Web/issues/981
// Markdig will encode the quote character reference, but we need to make sure AngleSharp
Expand Down
2 changes: 1 addition & 1 deletion tests/Statiq.Web.Tests/Pipelines/FeedsFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Statiq.Web.Tests.Pipelines
[TestFixture]
public class FeedsFixture : BaseFixture
{
public class ExecuteTests : DataFixture
public class ExecuteTests : FeedsFixture
{
[Test]
public async Task AllowsStringIds()
Expand Down
4 changes: 2 additions & 2 deletions tests/Statiq.Web.Tests/Pipelines/SitemapFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
namespace Statiq.Web.Tests.Pipelines
{
[TestFixture]
public class SitemapFixture
public class SitemapFixture : BaseFixture
{
public class ExecuteTests : DataFixture
public class ExecuteTests : SitemapFixture
{
[Test]
public async Task IncludeInSitemapByDefault()
Expand Down

0 comments on commit 0d10c5e

Please sign in to comment.