fix(CI): fix spell check for CI pull request (#2420)

This commit is contained in:
Shankar Singh C
2023-10-03 11:46:35 +05:30
committed by GitHub
parent ee7efd05ad
commit 3b10b1c473
2 changed files with 12 additions and 12 deletions

View File

@ -512,31 +512,31 @@ async fn should_fail_capture_for_invalid_payment() {
}
#[actix_web::test]
#[ignore = "refunds tests are ignored for this connector becuase it takes one day for a payment to be settled."]
#[ignore = "refunds tests are ignored for this connector because it takes one day for a payment to be settled."]
async fn should_partially_refund_manually_captured_payment() {}
#[actix_web::test]
#[ignore = "refunds tests are ignored for this connector becuase it takes one day for a payment to be settled."]
#[ignore = "refunds tests are ignored for this connector because it takes one day for a payment to be settled."]
async fn should_refund_manually_captured_payment() {}
#[actix_web::test]
#[ignore = "refunds tests are ignored for this connector becuase it takes one day for a payment to be settled."]
#[ignore = "refunds tests are ignored for this connector because it takes one day for a payment to be settled."]
async fn should_sync_manually_captured_refund() {}
#[actix_web::test]
#[ignore = "refunds tests are ignored for this connector becuase it takes one day for a payment to be settled."]
#[ignore = "refunds tests are ignored for this connector because it takes one day for a payment to be settled."]
async fn should_refund_auto_captured_payment() {}
#[actix_web::test]
#[ignore = "refunds tests are ignored for this connector becuase it takes one day for a payment to be settled."]
#[ignore = "refunds tests are ignored for this connector because it takes one day for a payment to be settled."]
async fn should_partially_refund_succeeded_payment() {}
#[actix_web::test]
#[ignore = "refunds tests are ignored for this connector becuase it takes one day for a payment to be settled."]
#[ignore = "refunds tests are ignored for this connector because it takes one day for a payment to be settled."]
async fn should_refund_succeeded_payment_multiple_times() {}
#[actix_web::test]
#[ignore = "refunds tests are ignored for this connector becuase it takes one day for a payment to be settled."]
#[ignore = "refunds tests are ignored for this connector because it takes one day for a payment to be settled."]
async fn should_fail_for_refund_amount_higher_than_payment_amount() {}
// Connector dependent test cases goes here

View File

@ -314,7 +314,7 @@ async fn should_partially_refund_succeeded_payment() {
}
#[actix_web::test]
#[ignore = "refunds tests are ignored for this connector becuase it takes one day for a payment to be settled."]
#[ignore = "refunds tests are ignored for this connector because it takes one day for a payment to be settled."]
async fn should_partially_refund_manually_captured_payment() {
let connector = Cybersource {};
let response = connector
@ -373,17 +373,17 @@ async fn should_sync_refund() {
}
#[actix_web::test]
#[ignore = "refunds tests are ignored for this connector becuase it takes one day for a payment to be settled."]
#[ignore = "refunds tests are ignored for this connector because it takes one day for a payment to be settled."]
async fn should_sync_manually_captured_refund() {}
#[actix_web::test]
#[ignore = "refunds tests are ignored for this connector becuase it takes one day for a payment to be settled."]
#[ignore = "refunds tests are ignored for this connector because it takes one day for a payment to be settled."]
async fn should_refund_auto_captured_payment() {}
#[actix_web::test]
#[ignore = "refunds tests are ignored for this connector becuase it takes one day for a payment to be settled."]
#[ignore = "refunds tests are ignored for this connector because it takes one day for a payment to be settled."]
async fn should_refund_succeeded_payment_multiple_times() {}
#[actix_web::test]
#[ignore = "refunds tests are ignored for this connector becuase it takes one day for a payment to be settled."]
#[ignore = "refunds tests are ignored for this connector because it takes one day for a payment to be settled."]
async fn should_fail_for_refund_amount_higher_than_payment_amount() {}