*
* @throws Exception
*/
@Test
public void testScalableSet() throws Exception {
txnScheduler.runTask(new TestAbstractKernelRunnable() {
public void run() throws Exception {
ScalableList<String> list = makeList();
assertEquals("C", list.set(2, "Z"));
assertEquals("Z", list.get(2));
assertEquals("I", list.set(8, "ZZ"));