Skip to content

Commit

Permalink
Fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
srnagar committed Aug 20, 2020
1 parent 6baad02 commit 0a3cb0f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Objects;
import java.util.Properties;
import java.util.concurrent.ConcurrentHashMap;
import java.util.logging.Level;
Expand Down Expand Up @@ -140,7 +141,7 @@ public SQLServerColumnEncryptionAzureKeyVaultProvider(TokenCredential tokenCrede
}

private void createKeyvaultClients(TokenCredential credential) throws SQLServerException {
this.credential = credential;
this.credential = Objects.requireNonNull(credential);
}

/**
Expand Down

0 comments on commit 0a3cb0f

Please sign in to comment.