We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a9b66f commit 07275caCopy full SHA for 07275ca
src/main/java/io/github/utplsql/cli/RunCommand.java
@@ -106,7 +106,10 @@ public void run() throws Exception {
106
107
executorService.submit(() -> {
108
try (Connection conn = ci.getConnection()){
109
- new TestRunner().run(conn, testPaths, reporterList);
+ new TestRunner()
110
+ .addPathList(testPaths)
111
+ .addReporterList(reporterList)
112
+ .run(conn);
113
} catch (SQLException e) {
114
// TODO
115
e.printStackTrace();
0 commit comments