From 81e24185f004ce22503a2ad089c3dd70c448c36a Mon Sep 17 00:00:00 2001 From: Alexander Avery Date: Mon, 19 May 2025 20:51:36 -0400 Subject: [PATCH] fewer inputs required in TestRead --- odl_test.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/odl_test.go b/odl_test.go index dbe5934..7da2870 100644 --- a/odl_test.go +++ b/odl_test.go @@ -34,9 +34,8 @@ func TestDownload(t *testing.T) { func TestRead(t *testing.T) { input := `boston -http://localhost/someboston +http://localhost/someboston.jpg http://localhost/anotherboston.mp4 -http://localhost/finalboston.jpg orlando http://localhost/someorlando.jpg @@ -50,9 +49,8 @@ http://localhost/someorlando.jpg err := fstest.TestFS( os.DirFS(dir), - "boston0", + "boston0.jpg", "boston1.mp4", - "boston2.jpg", "orlando0.jpg", )