diff --git a/.github/workflows/test-spec.yml b/.github/workflows/test-spec.yml index b15a6280d..a6c1e78ec 100644 --- a/.github/workflows/test-spec.yml +++ b/.github/workflows/test-spec.yml @@ -45,7 +45,7 @@ jobs: - version: 2.18.0 tests: plugins/workload-management - version: 2.18.0 - tests: plugins/analysis-icu + tests: plugins/analysis - version: 2.19.0 hub: opensearchstaging ref: '@sha256:4da23e0137b2b67206d23b36fcf0914cc39b3bf19310c782f536e4934b86f6cc' diff --git a/tests/plugins/analysis-icu/Dockerfile b/tests/plugins/analysis/Dockerfile similarity index 100% rename from tests/plugins/analysis-icu/Dockerfile rename to tests/plugins/analysis/Dockerfile diff --git a/tests/plugins/analysis-icu/docker-compose.yml b/tests/plugins/analysis/docker-compose.yml similarity index 100% rename from tests/plugins/analysis-icu/docker-compose.yml rename to tests/plugins/analysis/docker-compose.yml diff --git a/tests/plugins/analysis-icu/indices/mapping/icu_collation_keyword.yaml b/tests/plugins/analysis/indices/mapping/icu_collation_keyword.yaml similarity index 71% rename from tests/plugins/analysis-icu/indices/mapping/icu_collation_keyword.yaml rename to tests/plugins/analysis/indices/mapping/icu_collation_keyword.yaml index 29e4b5e90..1b4d78dda 100644 --- a/tests/plugins/analysis-icu/indices/mapping/icu_collation_keyword.yaml +++ b/tests/plugins/analysis/indices/mapping/icu_collation_keyword.yaml @@ -48,10 +48,12 @@ chapters: request: content_type: application/x-ndjson payload: - - { create: { _id: '1' } } - - { phrase: 'I WİLL USE TURKİSH CASING' } - - { create: { _id: '2' } } - - { phrase: 'ı will use turkish casıng' } + - {create: {_id: '1'}} + # eslint-disable-next-line @cspell/spellchecker + - {phrase: I WİLL USE TURKİSH CASING} + - {create: {_id: '2'}} + # eslint-disable-next-line @cspell/spellchecker + - {phrase: ı will use turkish casıng} - synopsis: Search for values with ICU collation. path: /{index}/_search @@ -62,10 +64,11 @@ chapters: payload: query: term: - phrase: 'I WİLL USE TURKİSH CASING' + # eslint-disable-next-line @cspell/spellchecker + phrase: I WİLL USE TURKİSH CASING sort: - phrase - - { _id: desc } + - {_id: desc} response: status: 200 payload: @@ -75,7 +78,9 @@ chapters: hits: - _id: '2' _source: - phrase: 'ı will use turkish casıng' + # eslint-disable-next-line @cspell/spellchecker + phrase: ı will use turkish casıng - _id: '1' _source: - phrase: 'I WİLL USE TURKİSH CASING' + # eslint-disable-next-line @cspell/spellchecker + phrase: I WİLL USE TURKİSH CASING