Skip to content

Commit 5788b50

Browse files
author
ASubaran
committed
Added code
1 parent 26a05e4 commit 5788b50

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

e2e_batch/test_e2e_batch.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def e2e_test_create_success():
1818
ack_key = wait_for_ack_file(None, input_file)
1919
ack_content = get_file_content_from_s3(ACK_BUCKET, ack_key)
2020
check_ack_file_content(ack_content, "OK")
21-
logger.info("Test e2e_test_create_success successfully executed")
21+
logger.info("Test e2e_test_create_success successfully passed")
2222

2323

2424
def e2e_test_update_success():
@@ -29,7 +29,7 @@ def e2e_test_update_success():
2929
ack_key = wait_for_ack_file(None, input_file)
3030
ack_content = get_file_content_from_s3(ACK_BUCKET, ack_key)
3131
check_ack_file_content(ack_content, "OK")
32-
logger.info("Test e2e_test_update_success successfully executed")
32+
logger.info("Test e2e_test_update_success successfully passed")
3333

3434

3535
def e2e_test_delete_success():
@@ -40,7 +40,7 @@ def e2e_test_delete_success():
4040
ack_key = wait_for_ack_file(None, input_file)
4141
ack_content = get_file_content_from_s3(ACK_BUCKET, ack_key)
4242
check_ack_file_content(ack_content, "OK")
43-
logger.info("Test e2e_test_delete_success successfully executed")
43+
logger.info("Test e2e_test_delete_success successfully passed")
4444

4545

4646
def e2e_test_pre_validation_error():
@@ -51,7 +51,7 @@ def e2e_test_pre_validation_error():
5151
ack_key = wait_for_ack_file(None, input_file)
5252
ack_content = get_file_content_from_s3(ACK_BUCKET, ack_key)
5353
check_ack_file_content(ack_content, "Fatal Error")
54-
logger.info("Test e2e_test_pre_validation_error successfully executed")
54+
logger.info("Test e2e_test_pre_validation_error successfully passed")
5555

5656

5757
def e2e_test_post_validation_error():
@@ -62,7 +62,7 @@ def e2e_test_post_validation_error():
6262
ack_key = wait_for_ack_file(None, input_file)
6363
ack_content = get_file_content_from_s3(ACK_BUCKET, ack_key)
6464
check_ack_file_content(ack_content, "Fatal Error")
65-
logger.info("Test e2e_test_post_validation_error successfully executed")
65+
logger.info("Test e2e_test_post_validation_error successfully passed")
6666

6767

6868
if __name__ == "__main__":

0 commit comments

Comments
 (0)