File tree Expand file tree Collapse file tree 1 file changed +9
-10
lines changed
databricks-sdk-java/src/test/java/com/databricks/sdk/integration Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change 11package com .databricks .sdk .integration ;
22
3- import com .databricks .sdk .AccountClient ;
4- import com .databricks .sdk .integration .framework .CollectionUtils ;
53import com .databricks .sdk .integration .framework .EnvContext ;
64import com .databricks .sdk .integration .framework .EnvTest ;
7- import com .databricks .sdk .service .provisioning .CustomerManagedKey ;
8- import org .junit .jupiter .api .Test ;
95import org .junit .jupiter .api .condition .DisabledIfEnvironmentVariable ;
106import org .junit .jupiter .api .extension .ExtendWith ;
117
128@ EnvContext ("account" )
139@ DisabledIfEnvironmentVariable (named = "ARM_CLIENT_ID" , matches = ".*" )
1410@ ExtendWith (EnvTest .class )
1511public 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}
You can’t perform that action at this time.
0 commit comments