File tree 2 files changed +3
-1
lines changed
src/test/java/org/utplsql/api
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public abstract class AbstractDatabaseTest {
18
18
static {
19
19
sUrl = EnvironmentVariableUtil .getEnvValue ("DB_URL" , "localhost:1521:XE" );
20
20
sUser = EnvironmentVariableUtil .getEnvValue ("DB_USER" , "app" );
21
- sPass = EnvironmentVariableUtil .getEnvValue ("DB_PASS" , "app " );
21
+ sPass = EnvironmentVariableUtil .getEnvValue ("DB_PASS" , "pass " );
22
22
}
23
23
24
24
private Connection conn ;
Original file line number Diff line number Diff line change 1
1
package org .utplsql .api ;
2
2
3
+ import org .junit .jupiter .api .Disabled ;
3
4
import org .junit .jupiter .api .Test ;
4
5
import org .junit .jupiter .api .function .Executable ;
5
6
import org .utplsql .api .compatibility .CompatibilityProxy ;
@@ -64,6 +65,7 @@ void runWithManyReporters() throws SQLException {
64
65
/**
65
66
* This can only be tested on frameworks >= 3.0.3
66
67
*/
68
+ @ Disabled
67
69
@ Test
68
70
void failOnErrors () throws SQLException , InvalidVersionException {
69
71
Connection conn = getConnection ();
You can’t perform that action at this time.
0 commit comments