Skip to content

Commit b5f9ee6

Browse files
committed
for internal Jenkins
1 parent 61e81c7 commit b5f9ee6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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.assumeTrue(QUICKTEST);
216+
Assume.assumeFalse(QUICKTEST);
217217
String testMethodName = new Object() {}.getClass().getEnclosingMethod().getName();
218218
logTestBegin(testMethodName);
219219

0 commit comments

Comments
 (0)