Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
Signed-off-by: Tokesh <[email protected]>
  • Loading branch information
Tokesh committed Dec 15, 2024
1 parent 5d15786 commit 54cd734
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/default/indices/msearch_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ prologues:
content_type: application/x-ndjson
payload:
- {create: {_index: books, _id: book1}}
- {author: "Harper Lee", title: "To Kill a Mockingbird", year: 1960}
- {author: Harper Lee, title: To Kill a Mockingbird, year: 1960}
- {create: {_index: books, _id: book2}}
- {author: "Elizabeth Rudnick", title: "Beauty and the Beast", year: 1991}
- {author: Elizabeth Rudnick, title: Beauty and the Beast, year: 1991}
- {create: {_index: books, _id: book3}}
- {author: "George Orwell", title: "1984", year: 1949}
- {author: George Orwell, title: '1984', year: 1949}
epilogues:
- path: /books
method: DELETE
Expand All @@ -30,9 +30,9 @@ chapters:
content_type: application/x-ndjson
payload:
- {index: books}
- {source: '{"query": {"match": {"title": "{{title}}"}}}', params: {title: "Mockingbird"}}
- {source: '{"query": {"match": {"title": "{{title}}"}}}', params: {title: Mockingbird}}
- {index: books}
- {source: '{"query": {"match": {"title": "{{title}}"}}}', params: {title: "Beast"}}
- {source: '{"query": {"match": {"title": "{{title}}"}}}', params: {title: Beast}}
response:
status: 200
- synopsis: Perform a multi-search template query using a POST request.
Expand All @@ -44,8 +44,8 @@ chapters:
content_type: application/x-ndjson
payload:
- {index: books}
- {source: '{"query": {"match": {"title": "{{title}}"}}}', params: {title: "1984"}}
- {source: '{"query": {"match": {"title": "{{title}}"}}}', params: {title: '1984'}}
- {index: books}
- {source: '{"query": {"match": {"author": "{{author}}"}}}', params: {author: "Harper Lee"}}
- {source: '{"query": {"match": {"author": "{{author}}"}}}', params: {author: Harper Lee}}
response:
status: 200

0 comments on commit 54cd734

Please sign in to comment.