We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85667de commit b599196Copy full SHA for b599196
1 file changed
test/com/xxdb/data/BasicTableTest.java
@@ -1631,8 +1631,8 @@ public void Test_BasicTable_colNames_list_empty() throws Exception {
1631
1632
@Test
1633
public void Test_BasicTable_colNames_list_vector_null() throws Exception {
1634
- //thrown.expect(java.lang.Error.class);
1635
- //thrown.expectMessage("The length of column name and column data is unequal.");
+ thrown.expect(java.lang.RuntimeException.class);
+ thrown.expectMessage("Column [col2] is null.");
1636
List<String> colNames = Arrays.asList("col1", "col2");
1637
List<Vector> cols = new ArrayList<Vector>(2);
1638
BasicDateVector date = new BasicDateVector(2);
0 commit comments