HBASE-11310 Addendum fixes compilation error
This commit is contained in:
parent
9944c6031f
commit
aa916b81ce
|
@ -4504,7 +4504,7 @@ public class TestFromClientSide {
|
|||
}
|
||||
// try null row
|
||||
try {
|
||||
Increment incNoRow = new Increment(null);
|
||||
Increment incNoRow = new Increment((byte [])null);
|
||||
incNoRow.addColumn(FAMILY, COLUMN, 5);
|
||||
fail("Should have thrown IllegalArgumentException");
|
||||
} catch (IllegalArgumentException iax) {
|
||||
|
|
Loading…
Reference in New Issue