Skip to content

Commit 525cd1c

Browse files
committed
Fix db rule variable type
1 parent 13c0b2c commit 525cd1c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/java/io/github/utplsql/api/OutputBufferTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
public class OutputBufferTest {
2222

2323
@Rule
24-
public static final DatabaseRule db = new DatabaseRule();
24+
public final DatabaseRule db = new DatabaseRule();
2525

2626
public BaseReporter createReporter() throws SQLException {
2727
Connection conn = db.newConnection();

src/test/java/io/github/utplsql/api/TestRunnerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
public class TestRunnerTest {
1717

1818
@Rule
19-
public static final DatabaseRule db = new DatabaseRule();
19+
public final DatabaseRule db = new DatabaseRule();
2020

2121
@Test
2222
public void runWithDocumentationReporter() {

0 commit comments

Comments
 (0)