File tree Expand file tree Collapse file tree
main/java/com/incognia/api
test/java/com/incognia/api Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33import com .incognia .api .clients .TokenAwareNetworkingClient ;
44import com .incognia .common .Address ;
5- import com .incognia .common .FinancialAccount ;
6- import com .incognia .common .PersonID ;
75import com .incognia .common .exceptions .IncogniaAPIException ;
86import com .incognia .common .exceptions .IncogniaException ;
97import com .incognia .common .utils .Asserts ;
@@ -567,7 +565,8 @@ private List<TransactionAddress> addressMapToTransactionAddresses(
567565 address .getAddressLine (),
568566 address .getStructuredAddress (),
569567 address .getCoordinates ());
570- })
568+ }
569+ )
571570 .collect (Collectors .toList ());
572571 }
573572}
Original file line number Diff line number Diff line change @@ -984,7 +984,13 @@ void testRegisterFeedback_whenDataIsValid(boolean dryRun) {
984984 String signupId = UUID .randomUUID ().toString ();
985985 Instant timestamp = Instant .now ();
986986 PersonID personId = PersonID .ofCPF ("12345678901" );
987- FinancialAccount financialAccount = FinancialAccount .builder ().accountNumber ("123456" ).branchCode ("1234" ).holderTaxId (personId ).holderType ("individual" ).build ();
987+ FinancialAccount financialAccount =
988+ FinancialAccount .builder ()
989+ .accountNumber ("123456" )
990+ .branchCode ("1234" )
991+ .holderTaxId (personId )
992+ .holderType ("individual" )
993+ .build ();
988994
989995 dispatcher .setExpectedFeedbackRequestBody (
990996 PostFeedbackRequestBody .builder ()
You can’t perform that action at this time.
0 commit comments