@@ -52,7 +52,7 @@ public class ItPodsRestart extends BaseTest {
52
52
@ BeforeClass
53
53
public static void staticPrepare () throws Exception {
54
54
// initialize test properties and create the directories
55
- if (QUICKTEST ) {
55
+ if (! QUICKTEST ) {
56
56
initialize (APP_PROPS_FILE );
57
57
58
58
logger .info ("Checking if operator1 and domain are running, if not creating" );
@@ -79,7 +79,7 @@ public static void staticPrepare() throws Exception {
79
79
*/
80
80
@ AfterClass
81
81
public static void staticUnPrepare () throws Exception {
82
- if (QUICKTEST ) {
82
+ if (! QUICKTEST ) {
83
83
logger .info ("+++++++++++++++++++++++++++++++++---------------------------------+" );
84
84
logger .info ("BEGIN" );
85
85
logger .info ("Run once, release cluster lease" );
@@ -213,7 +213,7 @@ public void testServerPodsRestartByChangingIncludeServerOutInPodLog() throws Exc
213
213
*/
214
214
@ Test
215
215
public void testServerPodsRestartByChangingZImage () throws Exception {
216
- Assume .assumeTrue (QUICKTEST );
216
+ Assume .assumeFalse (QUICKTEST );
217
217
String testMethodName = new Object () {}.getClass ().getEnclosingMethod ().getName ();
218
218
logTestBegin (testMethodName );
219
219
@@ -230,6 +230,7 @@ public void testServerPodsRestartByChangingZImage() throws Exception {
230
230
+ "/weblogick8s/middleware/weblogic:duplicate" );
231
231
232
232
String newImage = getWeblogicImageServer ()+ "/middleware/weblogic:12.2.1.3-dev" ;
233
+ TestUtils .exec ("docker pull" + newImage , true );
233
234
// apply new domain yaml and verify pod restart
234
235
domain .verifyDomainServerPodRestart (
235
236
"\" " + getWeblogicImageName () + ":" + getWeblogicImageTag () + "\" " ,
0 commit comments