File tree Expand file tree Collapse file tree 4 files changed +8
-10
lines changed
integration-tests/src/test/java/oracle/kubernetes/operator Expand file tree Collapse file tree 4 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -423,7 +423,7 @@ private void downloadWlsLoggingExporterJars() throws Exception {
423423
424424 // Make sure downloading completed
425425 while (i < BaseTest .getMaxIterationsPod ()) {
426- if (wlsLoggingExpFile .exists () && snakeyamlFile .exists ()) {
426+ if (wlsLoggingExpFile .exists () && snakeyamlFile .exists ()) {
427427 break ;
428428 }
429429
Original file line number Diff line number Diff line change 44
55package oracle .kubernetes .operator ;
66
7- import static oracle .kubernetes .operator .BaseTest .QUICKTEST ;
8- import static oracle .kubernetes .operator .BaseTest .logger ;
9-
107import java .util .logging .Level ;
8+
119import org .junit .AfterClass ;
1210import org .junit .Assume ;
1311import org .junit .BeforeClass ;
@@ -72,7 +70,7 @@ public void testCustomSitConfigOverridesForDomainInImage() throws Exception {
7270 * @throws Exception when the assertion fails due to unmatched values
7371 */
7472 @ Test
75- public void testCustomSitConfigOverridesForDomainMSInImage () throws Exception {
73+ public void testCustomSitConfigOverridesForDomainMsInImage () throws Exception {
7674 Assume .assumeFalse (QUICKTEST );
7775 String testMethod = new Object () {}.getClass ().getEnclosingMethod ().getName ();
7876 logTestBegin (testMethod );
Original file line number Diff line number Diff line change 11// Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
22// Licensed under the Universal Permissive License v 1.0 as shown at
33// http://oss.oracle.com/licenses/upl.
4- package oracle .kubernetes .operator ;
54
6- import static oracle .kubernetes .operator .BaseTest .QUICKTEST ;
7- import static oracle .kubernetes .operator .BaseTest .logger ;
5+ package oracle .kubernetes .operator ;
86
97import java .util .logging .Level ;
8+
109import org .junit .AfterClass ;
1110import org .junit .Assume ;
1211import org .junit .BeforeClass ;
@@ -70,7 +69,7 @@ public void testCustomSitConfigOverridesForDomainInPV() throws Exception {
7069 * @throws Exception when the assertion fails due to unmatched values
7170 */
7271 @ Test
73- public void testCustomSitConfigOverridesForDomainMSInPV () throws Exception {
72+ public void testCustomSitConfigOverridesForDomainMsInPV () throws Exception {
7473 Assume .assumeFalse (QUICKTEST );
7574 String testMethod = new Object () {}.getClass ().getEnclosingMethod ().getName ();
7675 logTestBegin (testMethod );
Original file line number Diff line number Diff line change 1515import java .nio .file .StandardOpenOption ;
1616import java .util .Map ;
1717import java .util .logging .Level ;
18+
1819import oracle .kubernetes .operator .utils .Domain ;
1920import oracle .kubernetes .operator .utils .ExecResult ;
2021import oracle .kubernetes .operator .utils .Operator ;
@@ -176,7 +177,7 @@ private static void destroySitConfigDomain() throws Exception {
176177 *
177178 * @throws IOException when copying files from source location to staging area fails
178179 */
179- private static void copySitConfigFiles (String files [] , String secretName ) throws IOException {
180+ private static void copySitConfigFiles (String [] files , String secretName ) throws IOException {
180181 String srcDir = TEST_RES_DIR + "/sitconfig/configoverrides" ;
181182 String dstDir = configOverrideDir ;
182183
You can’t perform that action at this time.
0 commit comments