Merge pull request #371 from andyzhangx/fix-codespell

chore: fix code spelling issue
This commit is contained in:
Kubernetes Prow Robot 2022-08-22 08:09:43 -07:00 committed by GitHub
commit 1ccf8136d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -13,3 +13,4 @@ jobs:
with:
check_filenames: true
skip: ./.git,./.github/workflows/codespell.yml,.git,*.png,*.jpg,*.svg,*.sum,./vendor,go.sum,./release-tools/prow.sh
ignore_words_list: "ro"

View File

@ -7,7 +7,7 @@ on:
jobs:
build:
name: Build
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

View File

@ -286,7 +286,7 @@ func TestSetKeyValueInMap(t *testing.T) {
expected: map[string]string{"subDir": "value"},
},
{
desc: "case insentive key already exists",
desc: "case insensitive key already exists",
m: map[string]string{"subDir": "value2"},
key: "subdir",
value: "value",