Skip to content

Commit

Permalink
fix(CI): fix spell check for CI pull request (#2420)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShankarSinghC authored Oct 3, 2023
1 parent ee7efd0 commit 3b10b1c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions crates/router/tests/connectors/authorizedotnet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions crates/router/tests/connectors/cybersource.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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() {}

0 comments on commit 3b10b1c

Please sign in to comment.