Skip to content

Commit

Permalink
Added test data
Browse files Browse the repository at this point in the history
  • Loading branch information
simasch committed Jul 7, 2023
1 parent 3a9b6a2 commit 58f6a65
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
- name: Install utPLSQL
run: sh ${{ github.workspace }}/scripts/1_install_utplsql.sh

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

- name: Set up JDK 11
uses: actions/setup-java@v2
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/utplsql/api/AbstractDatabaseTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public abstract class AbstractDatabaseTest {

static {
sUrl = EnvironmentVariableUtil.getEnvValue("DB_URL", "localhost:1521:XE");
sUser = EnvironmentVariableUtil.getEnvValue("DB_USER", "APP");
sUser = EnvironmentVariableUtil.getEnvValue("DB_USER", "app");
sPass = EnvironmentVariableUtil.getEnvValue("DB_PASS", "pass");
}

Expand Down

0 comments on commit 58f6a65

Please sign in to comment.