Skip to content

Commit

Permalink
refactor: v2 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sakilmostak committed Jun 27, 2024
1 parent 6dc4f62 commit 1f5edb9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions crates/router/tests/connectors/bamboraapac.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ impl ConnectorActions for BamboraapacTest {}
impl utils::Connector for BamboraapacTest {
fn get_data(&self) -> api::ConnectorData {
use router::connector::Adyen;
api::ConnectorData {
connector: Box::new(&Adyen),
connector_name: types::Connector::Adyen,
get_token: api::GetToken::Connector,
merchant_connector_id: None,
}
utils::construct_connector_data_old(
Box::new(&Adyen),
types::Connector::Adyen,
api::GetToken::Connector,
None,
)
}

fn get_auth_token(&self) -> types::ConnectorAuthType {
Expand Down

0 comments on commit 1f5edb9

Please sign in to comment.