We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97310da commit 7014ac9Copy full SHA for 7014ac9
tests/templates/kuttl/ldap/30-test-opensearch.yaml
@@ -91,8 +91,7 @@ data:
91
92
response = client.indices.create(index=index_name)
93
94
- print('\nCreating index:')
95
- print(response)
+ print(f'Creating index; {response=}')
96
97
# Add a document to the index
98
response = client.index(
@@ -103,11 +102,9 @@ data:
103
102
id = 1,
104
)
105
106
- print('\nAdding document:')
107
+ print(f'Adding document; {response=}')
108
109
# Delete the index.
110
response = client.indices.delete(index=index_name)
111
112
- print('\nDeleting index:')
113
+ print(f'Deleting index; {response=}')
0 commit comments