From 467a91bfe0504be2f81a1f4d8d82084c052dacfc Mon Sep 17 00:00:00 2001 From: Brian Popow Date: Sat, 18 May 2019 12:07:47 +0200 Subject: [PATCH] Renamed DrawImageTest to DrawImageTests, fixed namespace --- .../Drawing/{DrawImageTest.cs => DrawImageTests.cs} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename tests/ImageSharp.Tests/Drawing/{DrawImageTest.cs => DrawImageTests.cs} (99%) diff --git a/tests/ImageSharp.Tests/Drawing/DrawImageTest.cs b/tests/ImageSharp.Tests/Drawing/DrawImageTests.cs similarity index 99% rename from tests/ImageSharp.Tests/Drawing/DrawImageTest.cs rename to tests/ImageSharp.Tests/Drawing/DrawImageTests.cs index 54b04390e..0d0a82125 100644 --- a/tests/ImageSharp.Tests/Drawing/DrawImageTest.cs +++ b/tests/ImageSharp.Tests/Drawing/DrawImageTests.cs @@ -8,10 +8,10 @@ using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison; using SixLabors.Primitives; using Xunit; -namespace SixLabors.ImageSharp.Tests +namespace SixLabors.ImageSharp.Tests.Drawing { [GroupOutput("Drawing")] - public class DrawImageTest : FileTestBase + public class DrawImageTests : FileTestBase { private const PixelTypes PixelTypes = Tests.PixelTypes.Rgba32;