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 {
3131 @BeforeClass
3232 @AfterClass
3333 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" )
3535 try {
3636 jdbcTemplate. execute(" DROP PACKAGE junit_utplsql_test_pkg" )
3737 } catch (BadSqlGrammarException e) {
@@ -83,7 +83,7 @@ class DalTest extends AbstractJdbcTest {
8383 val dao = new UtplsqlDao (dataSource. connection)
8484 Assert . assertEquals(null , dao. utplsqlSchema)
8585 setupAndTeardown
86- Assert . assertEquals(" UT3_LATEST_RELEASE " , dao. utplsqlSchema)
86+ Assert . assertEquals(" UT3 " , dao. utplsqlSchema)
8787 }
8888
8989 @Test
@@ -491,7 +491,7 @@ class DalTest extends AbstractJdbcTest {
491491 val actual = dao. includes(' SCOTT' , ' junit_utplsql_test_pkg' )
492492 Assert . assertTrue(actual. findFirst[it == " SCOTT.JUNIT_UTPLSQL_TEST_PKG" ] !== null )
493493 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 )
495495 }
496496
497497 @Test
You can’t perform that action at this time.
0 commit comments