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
+3 -3
View File
@@ -15,7 +15,7 @@ class FilePostServiceTests
.Returns(new FilePostServiceOptions { PostsDirectory = "posts" });
_sut = new FilePostService(
_mockOptions.Object,
_mockOptions.Object,
_mockFileSystem.Object,
_mockLogger.Object
);
@@ -326,8 +326,8 @@ class FilePostServiceTests
_mockFileSystem
.Setup(x => x.Directory.GetDirectories(It.IsAny<string>()))
.Returns([
"valid-blog-post",
"another-valid-blog-post",
"valid-blog-post",
"another-valid-blog-post",
"invalid-blog-post"
]);