Skip to content
This repository was archived by the owner on Jul 7, 2021. It is now read-only.

Commit 6bae9b1

Browse files
committed
Fix iwillfailyou in tests
1 parent f606ead commit 6bae9b1

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/test/java/org/proshin/finapi/bank/FpBankTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@
2929
import org.proshin.finapi.primitives.OffsetDateTimeOf;
3030
import org.proshin.finapi.tppcredential.TppAuthenticationGroup;
3131

32-
final class FpBankTest {
32+
public final class FpBankTest {
3333

3434
@Test
35-
void test() {
35+
public void test() {
3636
final Bank bank = new FpBank(
3737
new JSONObject('{' +
3838
" \"id\": 277672," +

src/test/java/org/proshin/finapi/bankconnection/FpBankConnectionTest.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
final class FpBankConnectionTest extends TestWithMockedEndpoint {
4040

4141
@Test
42-
void testParsingJsonStructure() {
42+
public void testParsingJsonStructure() {
4343
final BankConnection connection = new FpBankConnection(
4444
this.endpoint(),
4545
new FakeAccessToken("user-token"),
@@ -237,7 +237,7 @@ void testParsingJsonStructure() {
237237
}
238238

239239
@Test
240-
void testEmptyOwnerArray() {
240+
public void testEmptyOwnerArray() {
241241
final BankConnection connection = new FpBankConnection(
242242
this.endpoint(),
243243
new FakeAccessToken("user-token"),
@@ -252,7 +252,7 @@ void testEmptyOwnerArray() {
252252
}
253253

254254
@Test
255-
void testNullOwnerArray() {
255+
public void testNullOwnerArray() {
256256
final BankConnection connection = new FpBankConnection(
257257
this.endpoint(),
258258
new FakeAccessToken("user-token"),
@@ -267,7 +267,7 @@ void testNullOwnerArray() {
267267
}
268268

269269
@Test
270-
void testEdit() {
270+
public void testEdit() {
271271
this.server()
272272
.when(
273273
HttpRequest.request("/api/v1/bankConnections/42")
@@ -299,7 +299,7 @@ void testEdit() {
299299
}
300300

301301
@Test
302-
void testDelete() {
302+
public void testDelete() {
303303
this.server()
304304
.when(
305305
HttpRequest.request("/api/v1/bankConnections/42")

0 commit comments

Comments
 (0)