From 1613a02b8e94bc8e923470a8a3661a8c91377da3 Mon Sep 17 00:00:00 2001 From: Martin Riedl Date: Tue, 2 Jul 2024 01:36:56 +0200 Subject: [PATCH] test: fixed test for file system index check --- fs_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs_test.go b/fs_test.go index 7f79a72..470d9f8 100644 --- a/fs_test.go +++ b/fs_test.go @@ -159,7 +159,7 @@ func TestFSFolderLocal(t *testing.T) { func TestFSFolderIndex(t *testing.T) { // create new FS fs := NewFS(&staticFiles) - fs.IndexFilenames = []string{"README.md"} + fs.IndexFileNames = []string{"README.md"} // serve the request tw := &testWriter{}