@@ -64,7 +64,7 @@ public void shouldCreateJobWithPlaybookDsl() throws Exception {
64
64
assertThat ("disableHostKeyChecking" , step .disableHostKeyChecking , is (false ));
65
65
assertThat ("additionalParameters" , step .additionalParameters , is ("params" ));
66
66
assertThat ("extraVar.key" , step .extraVars .get (0 ).getKey (), is ("key" ));
67
- assertThat ("extraVar.value" , step .extraVars .get (0 ).getValue (), is ("value" ));
67
+ assertThat ("extraVar.value" , step .extraVars .get (0 ).getSecretValue (). getPlainText (), is ("value" ));
68
68
assertThat ("extraVar.hidden" , step .extraVars .get (0 ).isHidden (), is (true ));
69
69
70
70
}
@@ -93,7 +93,7 @@ public void shouldCreateJobWithLegacyPlaybookDsl() throws Exception {
93
93
assertThat ("disableHostKeyChecking" , step .disableHostKeyChecking , is (true ));
94
94
assertThat ("additionalParameters" , step .additionalParameters , is ("params" ));
95
95
assertThat ("extraVar.key" , step .extraVars .get (0 ).getKey (), is ("key" ));
96
- assertThat ("extraVar.value" , step .extraVars .get (0 ).getValue (), is ("value" ));
96
+ assertThat ("extraVar.value" , step .extraVars .get (0 ).getSecretValue (). getPlainText (), is ("value" ));
97
97
assertThat ("extraVar.hidden" , step .extraVars .get (0 ).isHidden (), is (true ));
98
98
99
99
}
0 commit comments