You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ideally row by index of the 10th index should return the 11th element K right. Not sure why it should be M (the 12th index). Clarification would help here. Thanks
The text was updated successfully, but these errors were encountered:
https://github.com/Netflix/astyanax/blob/master/astyanax-test/src/test/java/com/netflix/astyanax/thrift/ThriftKeyspaceImplTest.java
@test
public void testGetAllKeysRoot() {
.........
row = result.getResult().getRowByIndex(10);
Assert.assertEquals("M", row.getKey());
.......
}
Ideally row by index of the 10th index should return the 11th element K right. Not sure why it should be M (the 12th index). Clarification would help here. Thanks
The text was updated successfully, but these errors were encountered: