Skip to content

Commit 8fc9f70

Browse files
committed
turn on QUICKTEST
1 parent 8a41746 commit 8fc9f70

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

integration-tests/src/test/java/oracle/kubernetes/operator/BaseTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,9 +264,9 @@ public static String getWeblogicImageTag() {
264264
}
265265

266266
/**
267-
* getter method for weblogicImageTag field.
267+
* getter method for weblogicImageDevTag field.
268268
*
269-
* @return image tag of the WLS docker images
269+
* @return image tag of the WLS Dev docker images
270270
*/
271271
public static String getWeblogicImageDevTag() {
272272
return weblogicImageDevTag;

integration-tests/src/test/java/oracle/kubernetes/operator/ItPodsRestart.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public class ItPodsRestart extends BaseTest {
5252
@BeforeClass
5353
public static void staticPrepare() throws Exception {
5454
// initialize test properties and create the directories
55-
if (!QUICKTEST) {
55+
if (QUICKTEST) {
5656
initialize(APP_PROPS_FILE);
5757

5858
logger.info("Checking if operator1 and domain are running, if not creating");
@@ -79,7 +79,7 @@ public static void staticPrepare() throws Exception {
7979
*/
8080
@AfterClass
8181
public static void staticUnPrepare() throws Exception {
82-
if (!QUICKTEST) {
82+
if (QUICKTEST) {
8383
logger.info("+++++++++++++++++++++++++++++++++---------------------------------+");
8484
logger.info("BEGIN");
8585
logger.info("Run once, release cluster lease");
@@ -213,7 +213,7 @@ public void testServerPodsRestartByChangingIncludeServerOutInPodLog() throws Exc
213213
*/
214214
@Test
215215
public void testServerPodsRestartByChangingZImage() throws Exception {
216-
Assume.assumeFalse(QUICKTEST);
216+
Assume.assumeTrue(QUICKTEST);
217217
String testMethodName = new Object() {}.getClass().getEnclosingMethod().getName();
218218
logTestBegin(testMethodName);
219219

0 commit comments

Comments
 (0)