Skip to content

Commit

Permalink
Rename test folder
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Farr <tsfarr@amazon.com>
  • Loading branch information
Xtansia committed Nov 13, 2024
1 parent 39555ce commit 7aa99de
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand All @@ -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

0 comments on commit 7aa99de

Please sign in to comment.