Skip to content

Commit 5c7a2cf

Browse files
committed
fix method names [#17]
1 parent b5bdbb0 commit 5c7a2cf

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

BunqSdk.Tests/Config.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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();

BunqSdk.Tests/Http/PaginationScenarioTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.

BunqSdk.Tests/Model/Generated/PaymentChatTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.

BunqSdk.Tests/Model/Generated/PaymentTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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.

BunqSdk.Tests/Model/Generated/RequestInquiryTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)