Remove unneeded read method in mocked UrlReader

Signed-off-by: Robert Bunning <rbunning@webstaurantstore.com>
This commit is contained in:
Robert Bunning
2023-01-03 11:51:10 -05:00
parent 67afc5001d
commit 30caac0eb3
@@ -59,9 +59,6 @@ const testFileTwoContent = 'testFileTwo content';
const genericFileContent = 'file content';
const mockUrlReader: UrlReader = {
read() {
throw new Error('read not implemented.');
},
readUrl(url: string) {
switch (url) {
case 'testFileOne':