File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
integration-tests/src/test/java/oracle/kubernetes/operator Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -59,8 +59,7 @@ public static void staticPrepare() throws Exception {
59
59
sitconfigDir = BaseTest .getResultDir () + "/configoverridefiles" ;
60
60
// Create the MySql db container
61
61
ExecResult result =
62
- TestUtils .exec (
63
- "kubectl create -f " + TESTSCRIPTDIR + "/mysql/mysql-dbservices.yml" );
62
+ TestUtils .exec ("kubectl create -f " + TESTSCRIPTDIR + "/mysql/mysql-dbservices.yml" );
64
63
Assert .assertEquals (0 , result .exitValue ());
65
64
66
65
fqdn = TestUtils .getHostName ();
@@ -98,8 +97,7 @@ public static void staticUnPrepare() throws Exception {
98
97
destroySitConfigDomain ();
99
98
tearDown ();
100
99
ExecResult result =
101
- TestUtils .exec (
102
- "kubectl delete -f " + TESTSCRIPTDIR + "/mysql/mysql-dbservices.yml" );
100
+ TestUtils .exec ("kubectl delete -f " + TESTSCRIPTDIR + "/mysql/mysql-dbservices.yml" );
103
101
}
104
102
}
105
103
You can’t perform that action at this time.
0 commit comments