diff --git a/Source/MonoGame.Extended.Tests/MonoGame.Extended.Tests.csproj b/Source/MonoGame.Extended.Tests/MonoGame.Extended.Tests.csproj
index 0eae6414..574faca1 100644
--- a/Source/MonoGame.Extended.Tests/MonoGame.Extended.Tests.csproj
+++ b/Source/MonoGame.Extended.Tests/MonoGame.Extended.Tests.csproj
@@ -79,7 +79,6 @@
-
diff --git a/Source/MonoGame.Extended.Tests/TextureAtlases/TextureAtlasKenneyXmlTests.cs b/Source/MonoGame.Extended.Tests/TextureAtlases/TextureAtlasKenneyXmlTests.cs
deleted file mode 100644
index c361e1bb..00000000
--- a/Source/MonoGame.Extended.Tests/TextureAtlases/TextureAtlasKenneyXmlTests.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-using System;
-using System.IO;
-using Microsoft.Xna.Framework.Content;
-using MonoGame.Extended.TextureAtlases;
-using NSubstitute;
-using NUnit.Framework;
-
-namespace MonoGame.Extended.Tests.TextureAtlases
-{
- [TestFixture]
- public class TextureAtlasKenneyXmlTests
- {
- [Test]
- public void TextureAtlas_LoadFromKenneyXml_Test()
- {
- const string path = @"D:\Github\Public\MonoGame.Extended\Source\Demos\Demo.Gui\Content\kenney-gui-blue-atlas.xml";
- var serviceProvider = Substitute.For();
- var contentManager = new ContentManager(serviceProvider);
-
- using (var stream = File.OpenRead(path))
- {
- var textureAtlas = TextureAtlasReader.FromRawXml(contentManager, stream);
- }
- }
- }
-}
\ No newline at end of file