Skip to content

Commit 49aaf88

Browse files
committed
disable customermanagedkey test
1 parent 0fa5fd6 commit 49aaf88

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed
Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
11
package com.databricks.sdk.integration;
22

3-
import com.databricks.sdk.AccountClient;
4-
import com.databricks.sdk.integration.framework.CollectionUtils;
53
import com.databricks.sdk.integration.framework.EnvContext;
64
import com.databricks.sdk.integration.framework.EnvTest;
7-
import com.databricks.sdk.service.provisioning.CustomerManagedKey;
8-
import org.junit.jupiter.api.Test;
95
import org.junit.jupiter.api.condition.DisabledIfEnvironmentVariable;
106
import org.junit.jupiter.api.extension.ExtendWith;
117

128
@EnvContext("account")
139
@DisabledIfEnvironmentVariable(named = "ARM_CLIENT_ID", matches = ".*")
1410
@ExtendWith(EnvTest.class)
1511
public class EncryptionKeysIT {
16-
@Test
17-
void lists(AccountClient a) {
18-
Iterable<CustomerManagedKey> list = a.encryptionKeys().list();
12+
// TODO: Enable this test when the test account is updated to support this.
13+
// Either by upgrading the test account tier to Enterprise or by adding this
14+
// feature to the test account.
15+
// @Test
16+
// void lists(AccountClient a) {
17+
// Iterable<CustomerManagedKey> list = a.encryptionKeys().list();
1918

20-
java.util.List<CustomerManagedKey> all = CollectionUtils.asList(list);
19+
// java.util.List<CustomerManagedKey> all = CollectionUtils.asList(list);
2120

22-
CollectionUtils.assertUnique(all);
23-
}
21+
// CollectionUtils.assertUnique(all);
22+
// }
2423
}

0 commit comments

Comments
 (0)