From 7adc3fc66000c458ea8b0d81352591a202033341 Mon Sep 17 00:00:00 2001 From: bkioshn Date: Mon, 11 Dec 2023 13:02:34 +0700 Subject: [PATCH] test: add cspell ignore word --- cli/pkg/scanners/file_scanner_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/pkg/scanners/file_scanner_test.go b/cli/pkg/scanners/file_scanner_test.go index cf9169bfd..421f4d8ce 100644 --- a/cli/pkg/scanners/file_scanner_test.go +++ b/cli/pkg/scanners/file_scanner_test.go @@ -1,6 +1,6 @@ package scanners_test -// cspell: words onsi gomega afero +// cspell: words onsi gomega afero testdocker import ( "errors" @@ -120,7 +120,7 @@ var _ = Describe("FileScanner", func() { Expect(earthfiles).To(BeEmpty()) }, - Entry("target in file doesn't start with docker", "dtestdocker"), + Entry("target in file doesn't start with docker", "testdocker"), Entry("target in file start with docker with hyphen but not followed by one or more lowercase letters or numbers ", "docker-"), Entry("target in file start with docker with hyphen followed by special character", "docker-@"), Entry("target in file start with docker with hyphen followed capital letter", "docker-TEST"),