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 {
423
423
424
424
// Make sure downloading completed
425
425
while (i < BaseTest .getMaxIterationsPod ()) {
426
- if (wlsLoggingExpFile .exists () && snakeyamlFile .exists ()) {
426
+ if (wlsLoggingExpFile .exists () && snakeyamlFile .exists ()) {
427
427
break ;
428
428
}
429
429
Original file line number Diff line number Diff line change 4
4
5
5
package oracle .kubernetes .operator ;
6
6
7
- import static oracle .kubernetes .operator .BaseTest .QUICKTEST ;
8
- import static oracle .kubernetes .operator .BaseTest .logger ;
9
-
10
7
import java .util .logging .Level ;
8
+
11
9
import org .junit .AfterClass ;
12
10
import org .junit .Assume ;
13
11
import org .junit .BeforeClass ;
@@ -72,7 +70,7 @@ public void testCustomSitConfigOverridesForDomainInImage() throws Exception {
72
70
* @throws Exception when the assertion fails due to unmatched values
73
71
*/
74
72
@ Test
75
- public void testCustomSitConfigOverridesForDomainMSInImage () throws Exception {
73
+ public void testCustomSitConfigOverridesForDomainMsInImage () throws Exception {
76
74
Assume .assumeFalse (QUICKTEST );
77
75
String testMethod = new Object () {}.getClass ().getEnclosingMethod ().getName ();
78
76
logTestBegin (testMethod );
Original file line number Diff line number Diff line change 1
1
// Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2
2
// Licensed under the Universal Permissive License v 1.0 as shown at
3
3
// http://oss.oracle.com/licenses/upl.
4
- package oracle .kubernetes .operator ;
5
4
6
- import static oracle .kubernetes .operator .BaseTest .QUICKTEST ;
7
- import static oracle .kubernetes .operator .BaseTest .logger ;
5
+ package oracle .kubernetes .operator ;
8
6
9
7
import java .util .logging .Level ;
8
+
10
9
import org .junit .AfterClass ;
11
10
import org .junit .Assume ;
12
11
import org .junit .BeforeClass ;
@@ -70,7 +69,7 @@ public void testCustomSitConfigOverridesForDomainInPV() throws Exception {
70
69
* @throws Exception when the assertion fails due to unmatched values
71
70
*/
72
71
@ Test
73
- public void testCustomSitConfigOverridesForDomainMSInPV () throws Exception {
72
+ public void testCustomSitConfigOverridesForDomainMsInPV () throws Exception {
74
73
Assume .assumeFalse (QUICKTEST );
75
74
String testMethod = new Object () {}.getClass ().getEnclosingMethod ().getName ();
76
75
logTestBegin (testMethod );
Original file line number Diff line number Diff line change 15
15
import java .nio .file .StandardOpenOption ;
16
16
import java .util .Map ;
17
17
import java .util .logging .Level ;
18
+
18
19
import oracle .kubernetes .operator .utils .Domain ;
19
20
import oracle .kubernetes .operator .utils .ExecResult ;
20
21
import oracle .kubernetes .operator .utils .Operator ;
@@ -176,7 +177,7 @@ private static void destroySitConfigDomain() throws Exception {
176
177
*
177
178
* @throws IOException when copying files from source location to staging area fails
178
179
*/
179
- private static void copySitConfigFiles (String files [] , String secretName ) throws IOException {
180
+ private static void copySitConfigFiles (String [] files , String secretName ) throws IOException {
180
181
String srcDir = TEST_RES_DIR + "/sitconfig/configoverrides" ;
181
182
String dstDir = configOverrideDir ;
182
183
You can’t perform that action at this time.
0 commit comments