Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mosip 17586 sonar coverage 23 #810

Prev Previous commit
Next Next commit
Fixed tests
Loganathan Sekar committed Jan 20, 2022
commit a79d55ebd830727ae3028c1b2f5288a776399cdb
Original file line number Diff line number Diff line change
@@ -6,6 +6,7 @@

import java.io.IOException;
import java.time.LocalDateTime;
import java.time.temporal.ChronoUnit;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
@@ -301,7 +302,7 @@ public void updateVidStatusTest() throws IdAuthenticationBusinessException {

private IdentityEntity getEntity() {
IdentityEntity entity = new IdentityEntity();
LocalDateTime time = DateUtils.getUTCCurrentDateTime();
LocalDateTime time = DateUtils.getUTCCurrentDateTime().plus(10, ChronoUnit.MINUTES);
entity.setExpiryTimestamp(time);
byte[] bioData = {};
entity.setBiometricData(bioData);
You are viewing a condensed version of this merge commit. You can view the full changes here.