refactor(*): Rename FileName to Filename across the whole solution for consistency

This commit is contained in:
Josh Creek
2021-08-30 12:49:43 +01:00
parent 9c48ae9452
commit 997c71097a
3 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ namespace UnitTests
RepoFile repoFile = await fileRepository.ReadFileAsync(filename);
Assert.NotNull(repoFile);
Assert.NotNull(repoFile.FileName);
Assert.NotNull(repoFile.Filename);
Assert.NotNull(repoFile.Content);
Assert.NotNull(repoFile.Created);
}