Fix unnecessary use of fully qualified name

This commit is contained in:
ghubstan 2020-09-22 22:58:32 -03:00
parent fc1f0bac60
commit d190d09e2b
No known key found for this signature in database
GPG key ID: E35592D6800A861E

View file

@ -120,7 +120,7 @@ public class MethodTest extends ApiTestCase {
PaymentAccount paymentAccount = paymentAccountsService.getPaymentAccounts(getPaymentAccountsRequest)
.getPaymentAccountsList()
.stream()
.sorted(comparing(protobuf.PaymentAccount::getCreationDate))
.sorted(comparing(PaymentAccount::getCreationDate))
.collect(Collectors.toList()).get(0);
assertEquals("PerfectMoney dummy", paymentAccount.getAccountName());
return paymentAccount;