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

Skip to content

Commit fc01398

Browse files
add owner to test of include dependencies
1 parent 1a45049 commit fc01398

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sqldev/src/test/java/org/utplsql/sqldev/test/dal/DalTest.xtend

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -488,10 +488,10 @@ class DalTest extends AbstractJdbcTest {
488488
END junit_utplsql_test_pkg;
489489
''')
490490
val dao = new UtplsqlDao(dataSource.connection)
491-
val actualEmpty = dao.includes('TEST_F1')
491+
val actualEmpty = dao.includes('SCOTT', 'TEST_F1')
492492
Assert.assertEquals(#[], actualEmpty)
493-
val actual = dao.includes('junit_utplsql_test_pkg')
494-
Assert.assertEquals(#['JUNIT_UTPLSQL_TEST_PKG','JUNIT_F','UT_EXPECTATION'].sort, actual.sort)
493+
val actual = dao.includes('SCOTT', 'junit_utplsql_test_pkg')
494+
Assert.assertEquals(#['SCOTT.JUNIT_UTPLSQL_TEST_PKG','SCOTT.JUNIT_F','UT3_LATEST_RELEASE.UT_EXPECTATION'].sort, actual.sort)
495495
}
496496

497497
@Test

0 commit comments

Comments
 (0)