Update test cases in fsurls_test.go and lang_files_test.go to include the new parameter for URL collection in CollectURLs function.

This commit is contained in:
Luke Hagar
2025-09-11 22:06:20 +00:00
parent 90845181d9
commit 3040577b67
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ import (
func TestCollectURLs_FromTestFiles(t *testing.T) {
root := filepath.Join("..", "..", "testdata")
urls, err := CollectURLs(root, []string{"**/*"})
urls, err := CollectURLs(root, []string{"**/*"}, true)
if err != nil {
t.Fatalf("CollectURLs error: %v", err)
}

View File

@@ -7,7 +7,7 @@ import (
func TestCollectURLs_FromCodeFiles(t *testing.T) {
root := filepath.Join("..", "..", "testdata")
urls, err := CollectURLs(root, []string{"**/*"})
urls, err := CollectURLs(root, []string{"**/*"}, true)
if err != nil {
t.Fatalf("CollectURLs error: %v", err)
}