chore: cleanup usings and run dotnet format

This commit is contained in:
Stevan Freeborn
2024-04-12 19:33:56 -05:00
parent 95d4888876
commit ba65401c88
9 changed files with 27 additions and 30 deletions
+2 -7
View File
@@ -1,8 +1,3 @@
using System.ServiceModel.Syndication;
using System.Text;
using System.Xml;
using System.Xml.Linq;
namespace Blog.Tests.EndToEnd;
[TestFixture]
@@ -15,9 +10,9 @@ public class RssTests : BlogTest
response.Status.Should().Be((int)HttpStatusCode.OK);
var xml = await response.BodyAsync();
var streamReader = new StreamReader(
new MemoryStream(xml),
new MemoryStream(xml),
Encoding.UTF8
);