File tree Expand file tree Collapse file tree
tests/src/test/java/io/orkes/conductor/client/http Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212 */
1313package io .orkes .conductor .client .http ;
1414
15- import java .util .List ;
16- import java .util .Optional ;
17- import java .util .UUID ;
18-
19- import org .junit .jupiter .api .Assertions ;
20- import org .junit .jupiter .api .BeforeAll ;
21- import org .junit .jupiter .api .Test ;
22-
23- import com .netflix .conductor .client .exception .ConductorClientException ;
24-
2515import io .orkes .conductor .client .EnvironmentClient ;
2616import io .orkes .conductor .client .model .Tag ;
2717import io .orkes .conductor .client .model .environment .EnvironmentVariable ;
2818import io .orkes .conductor .client .util .ClientTestUtil ;
19+ import org .junit .jupiter .api .Assertions ;
20+ import org .junit .jupiter .api .BeforeAll ;
21+ import org .junit .jupiter .api .Test ;
22+
23+ import java .util .List ;
24+ import java .util .Optional ;
25+ import java .util .UUID ;
2926
3027public class EnvironmentClientTests {
3128
@@ -42,12 +39,6 @@ void testMethods() {
4239 String varName = "test-sdk-java-env-var-" + UUID .randomUUID ();
4340 String value = "value-" + UUID .randomUUID ();
4441
45- try {
46- envClient .deleteEnvironmentVariable (varName );
47- } catch (ConductorClientException ignore ) {
48- // ignore if not found
49- }
50-
5142 // create/update
5243 envClient .createOrUpdateEnvironmentVariable (varName , value );
5344
You can’t perform that action at this time.
0 commit comments