Skip to content

Commit 4fe6bb9

Browse files
committed
Small fix for ColumnInfoTest
The test ran fine in a suite, but got an NPE when run by itself since it referenced `Common.client` without instantiating it.
1 parent 2c901b7 commit 4fe6bb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

marklogic-client-api/src/test/java/com/marklogic/client/test/rows/ColumnInfoTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class ColumnInfoTest {
2525

2626
@BeforeEach
2727
void beforeEach() {
28-
rowManager = Common.newClient().newRowManager();
28+
rowManager = Common.connect().newRowManager();
2929
}
3030

3131
@Test

0 commit comments

Comments
 (0)