Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 58f6a65

Browse files
committed
Added test data
1 parent 3a9b6a2 commit 58f6a65

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ jobs:
3838
- name: Install utPLSQL
3939
run: sh ${{ github.workspace }}/scripts/1_install_utplsql.sh
4040

41-
# - name: Install demo project
42-
# run: sh ${{ github.workspace }}/scripts/2_install_demo_project.sh
41+
- name: Install demo project
42+
run: sh ${{ github.workspace }}/scripts/2_install_demo_project.sh
4343

4444
- name: Set up JDK 11
4545
uses: actions/setup-java@v2

src/test/java/org/utplsql/api/AbstractDatabaseTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public abstract class AbstractDatabaseTest {
1717

1818
static {
1919
sUrl = EnvironmentVariableUtil.getEnvValue("DB_URL", "localhost:1521:XE");
20-
sUser = EnvironmentVariableUtil.getEnvValue("DB_USER", "APP");
20+
sUser = EnvironmentVariableUtil.getEnvValue("DB_USER", "app");
2121
sPass = EnvironmentVariableUtil.getEnvValue("DB_PASS", "pass");
2222
}
2323

0 commit comments

Comments
 (0)