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

Commit

Permalink
Fix iwillfailyou in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
proshin-roman committed Nov 29, 2020
1 parent f606ead commit 6bae9b1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/test/java/org/proshin/finapi/bank/FpBankTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
import org.proshin.finapi.primitives.OffsetDateTimeOf;
import org.proshin.finapi.tppcredential.TppAuthenticationGroup;

final class FpBankTest {
public final class FpBankTest {

@Test
void test() {
public void test() {
final Bank bank = new FpBank(
new JSONObject('{' +
" \"id\": 277672," +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
final class FpBankConnectionTest extends TestWithMockedEndpoint {

@Test
void testParsingJsonStructure() {
public void testParsingJsonStructure() {
final BankConnection connection = new FpBankConnection(
this.endpoint(),
new FakeAccessToken("user-token"),
Expand Down Expand Up @@ -237,7 +237,7 @@ void testParsingJsonStructure() {
}

@Test
void testEmptyOwnerArray() {
public void testEmptyOwnerArray() {
final BankConnection connection = new FpBankConnection(
this.endpoint(),
new FakeAccessToken("user-token"),
Expand All @@ -252,7 +252,7 @@ void testEmptyOwnerArray() {
}

@Test
void testNullOwnerArray() {
public void testNullOwnerArray() {
final BankConnection connection = new FpBankConnection(
this.endpoint(),
new FakeAccessToken("user-token"),
Expand All @@ -267,7 +267,7 @@ void testNullOwnerArray() {
}

@Test
void testEdit() {
public void testEdit() {
this.server()
.when(
HttpRequest.request("/api/v1/bankConnections/42")
Expand Down Expand Up @@ -299,7 +299,7 @@ void testEdit() {
}

@Test
void testDelete() {
public void testDelete() {
this.server()
.when(
HttpRequest.request("/api/v1/bankConnections/42")
Expand Down

0 comments on commit 6bae9b1

Please sign in to comment.