File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -42,15 +42,15 @@ public static int GetCashRegisterId()
4242 return GetConfig ( ) [ FIELD_TAB_USAGE_SINGLE ] [ FIELD_CASH_REGISTER_ID ] . ToObject < int > ( ) ;
4343 }
4444
45- public static Pointer GetCounterAliasOther ( )
45+ public static Pointer GetCounterPartyAliasOther ( )
4646 {
4747 var alias = GetConfig ( ) [ FIELD_COUNTER_PARTY_OTHER ] [ FIELD_COUNTER_ALIAS ] . ToString ( ) ;
4848 var type = GetConfig ( ) [ FIELD_COUNTER_PARTY_OTHER ] [ FIELD_COUNTER_TYPE ] . ToString ( ) ;
4949
5050 return new Pointer ( type , alias ) ;
5151 }
5252
53- public static Pointer GetCounterAliasSelf ( )
53+ public static Pointer GetCounterPartyAliasSelf ( )
5454 {
5555 var alias = GetConfig ( ) [ FIELD_COUNTER_PARTY_SELF ] [ FIELD_COUNTER_ALIAS ] . ToString ( ) ;
5656 var type = GetConfig ( ) [ FIELD_COUNTER_PARTY_SELF ] [ FIELD_COUNTER_TYPE ] . ToString ( ) ;
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ public class PaginationScenarioTest : BunqSdkTestBase
1919 /// </summary>
2020 private static readonly int USER_ID = Config . GetUserId ( ) ;
2121 private static readonly int MONETARY_ACCOUNT_ID = Config . GetMonetarytAccountId ( ) ;
22- private static readonly Pointer COUNTER_PARTY_OTHER = Config . GetCounterAliasOther ( ) ;
22+ private static readonly Pointer COUNTER_PARTY_OTHER = Config . GetCounterPartyAliasOther ( ) ;
2323
2424 /// <summary>
2525 /// Constants for scenario testing.
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public class PaymentChatTest : BunqSdkTestBase
2424
2525 private static readonly int USER_ID = Config . GetUserId ( ) ;
2626 private static readonly int MONETARTY_ACCOUNT_ID = Config . GetMonetarytAccountId ( ) ;
27- private static readonly Pointer COUNTER_PARTY_ALIAS = Config . GetCounterAliasSelf ( ) ;
27+ private static readonly Pointer COUNTER_PARTY_ALIAS = Config . GetCounterPartyAliasSelf ( ) ;
2828
2929 /// <summary>
3030 /// API context used for the test API calls.
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ public class PaymentTest : BunqSdkTestBase
2121
2222 private static readonly int USER_ID = Config . GetUserId ( ) ;
2323 private static readonly int MONETARY_ACCOUNT_ID = Config . GetMonetarytAccountId ( ) ;
24- private static readonly Pointer COUNTER_PARTY_SELF = Config . GetCounterAliasSelf ( ) ;
25- private static readonly Pointer COUNTER_PARTY_OTHER = Config . GetCounterAliasOther ( ) ;
24+ private static readonly Pointer COUNTER_PARTY_SELF = Config . GetCounterPartyAliasSelf ( ) ;
25+ private static readonly Pointer COUNTER_PARTY_OTHER = Config . GetCounterPartyAliasOther ( ) ;
2626
2727 /// <summary>
2828 /// API context to use for the test API calls.
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public class RequestInquiryTest : BunqSdkTestBase
2525 private static readonly int USER_ID = Config . GetUserId ( ) ;
2626 private static readonly int MONETARY_ACCOUNT_ID = Config . GetMonetarytAccountId ( ) ;
2727 private static readonly int SECOND_MONETARY_ACCOUNT_ID = Config . GetSecondMonetaryAccountId ( ) ;
28- private static readonly Pointer COUNTER_PARTY_SELF = Config . GetCounterAliasSelf ( ) ;
28+ private static readonly Pointer COUNTER_PARTY_SELF = Config . GetCounterPartyAliasSelf ( ) ;
2929
3030 /// <summary>
3131 /// API context to use for the test API calls.
You can’t perform that action at this time.
0 commit comments