Skip to content

Commit b599196

Browse files
committed
AJ-1011:fix test case
1 parent 85667de commit b599196

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/com/xxdb/data/BasicTableTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1631,8 +1631,8 @@ public void Test_BasicTable_colNames_list_empty() throws Exception {
16311631

16321632
@Test
16331633
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.");
1634+
thrown.expect(java.lang.RuntimeException.class);
1635+
thrown.expectMessage("Column [col2] is null.");
16361636
List<String> colNames = Arrays.asList("col1", "col2");
16371637
List<Vector> cols = new ArrayList<Vector>(2);
16381638
BasicDateVector date = new BasicDateVector(2);

0 commit comments

Comments
 (0)