fix(connector): [DummyConnector] change dummy connector names (#1328)

This commit is contained in:
Mani Chandra
2023-06-21 17:22:06 +05:30
committed by GitHub
parent b0c103a193
commit 6645c4d123
2 changed files with 16 additions and 16 deletions

View File

@ -75,10 +75,10 @@ where
impl<const T: u8> ConnectorCommon for DummyConnector<T> {
fn id(&self) -> &'static str {
match T {
1 => "dummyconnector1",
2 => "dummyconnector2",
3 => "dummyconnector3",
_ => "dummyconnector",
1 => "phonypay",
2 => "fauxpay",
3 => "pretendpay",
_ => "phonypay",
}
}