quick fix to ComicControllerTests

This commit is contained in:
Cameron
2024-09-08 14:16:11 -05:00
parent a69cd6a33c
commit 06fc8260d5

View File

@@ -62,7 +62,7 @@ public class ComicControllerTests
MockComicAnalyzer analyzer = new(); MockComicAnalyzer analyzer = new();
analyzer.ComicPages.Add((Path.Join(config.LibraryRoot, comic.Filepath), PAGE_NUMBER), comicPage); analyzer.ComicPages.Add((Path.Join(config.LibraryRoot, comic.Filepath), PAGE_NUMBER), comicPage);
//returned from all MockPictureConverter functions //returned from all MockPictureConverter functions
byte[] mockPictureData = [1, 2, 3, 4, 5]; byte[] mockPictureData = [5, 4, 3, 2, 1];
MockPictureConverter converter = new MockPictureConverter(mockPictureData); MockPictureConverter converter = new MockPictureConverter(mockPictureData);
AuthenticationService auth = new(); AuthenticationService auth = new();
auth.Authenticate(user); auth.Authenticate(user);