File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
sqldev/src/test/java/org/utplsql/sqldev/test/dal Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ class DalTest extends AbstractJdbcTest {
31
31
@BeforeClass
32
32
@AfterClass
33
33
def static void setupAndTeardown () {
34
- sysJdbcTemplate. execute(" CREATE OR REPLACE PUBLIC SYNONYM ut FOR ut3_latest_release .ut" )
34
+ sysJdbcTemplate. execute(" CREATE OR REPLACE PUBLIC SYNONYM ut FOR ut3 .ut" )
35
35
try {
36
36
jdbcTemplate. execute(" DROP PACKAGE junit_utplsql_test_pkg" )
37
37
} catch (BadSqlGrammarException e) {
@@ -83,7 +83,7 @@ class DalTest extends AbstractJdbcTest {
83
83
val dao = new UtplsqlDao (dataSource. connection)
84
84
Assert . assertEquals(null , dao. utplsqlSchema)
85
85
setupAndTeardown
86
- Assert . assertEquals(" UT3_LATEST_RELEASE " , dao. utplsqlSchema)
86
+ Assert . assertEquals(" UT3 " , dao. utplsqlSchema)
87
87
}
88
88
89
89
@Test
@@ -491,7 +491,7 @@ class DalTest extends AbstractJdbcTest {
491
491
val actual = dao. includes(' SCOTT' , ' junit_utplsql_test_pkg' )
492
492
Assert . assertTrue(actual. findFirst[it == " SCOTT.JUNIT_UTPLSQL_TEST_PKG" ] !== null )
493
493
Assert . assertTrue(actual. findFirst[it == " SCOTT.JUNIT_F" ] !== null )
494
- Assert . assertTrue(actual. findFirst[it == " UT3_LATEST_RELEASE .UT_EXPECTATION" ] !== null )
494
+ Assert . assertTrue(actual. findFirst[it == " UT3 .UT_EXPECTATION" ] !== null )
495
495
}
496
496
497
497
@Test
You can’t perform that action at this time.
0 commit comments