From d02c0e93cb2e7fdc8e4e4e86e786ccf902985c20 Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Mon, 29 May 2023 21:39:11 +0900 Subject: [PATCH] chore: fix a typo (#118) --- content_analyzer_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content_analyzer_test.go b/content_analyzer_test.go index f31ee50..0c966a5 100644 --- a/content_analyzer_test.go +++ b/content_analyzer_test.go @@ -88,7 +88,7 @@ func TestBasicContentAnalyzer(t *testing.T) { t.Fatalf("expected trimming tempdir from excluded not to have error: %v", err) } if !tc.expectedExcluded.Equals(collections.SliceToSet(excludePathsTrimmed)) { - t.Fatalf("expected excludsions:\n%v\ngot:\n%v", tc.expectedExcluded, excludedPaths) + t.Fatalf("expected exclusions:\n%v\ngot:\n%v", tc.expectedExcluded, excludedPaths) } }) }