Skip to content

Commit 7014ac9

Browse files
test: Improve test output
1 parent 97310da commit 7014ac9

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

tests/templates/kuttl/ldap/30-test-opensearch.yaml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,7 @@ data:
9191
9292
response = client.indices.create(index=index_name)
9393
94-
print('\nCreating index:')
95-
print(response)
94+
print(f'Creating index; {response=}')
9695
9796
# Add a document to the index
9897
response = client.index(
@@ -103,11 +102,9 @@ data:
103102
id = 1,
104103
)
105104
106-
print('\nAdding document:')
107-
print(response)
105+
print(f'Adding document; {response=}')
108106
109107
# Delete the index.
110108
response = client.indices.delete(index=index_name)
111109
112-
print('\nDeleting index:')
113-
print(response)
110+
print(f'Deleting index; {response=}')

0 commit comments

Comments
 (0)