Skip to content

Commit

Permalink
autolint
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-maynard committed Oct 4, 2024
1 parent 480502b commit 0c85100
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ public class AzureCredentialStorageIntegrationTest {

private void assumeEnvVariablesNotNull() {
Assumptions.assumeThat(
Strings.isNullOrEmpty(clientId) ||
Strings.isNullOrEmpty(clientSecret) ||
Strings.isNullOrEmpty(tenantId))
Strings.isNullOrEmpty(clientId)
|| Strings.isNullOrEmpty(clientSecret)
|| Strings.isNullOrEmpty(tenantId))
.describedAs("Null Azure testing environment variables!")
.isFalse();
}
Expand Down

0 comments on commit 0c85100

Please sign in to comment.