Tweaked unit test to include uncommitted block

This commit is contained in:
Paul O'Fallon 2012-02-26 20:43:04 -05:00
Родитель 3e1567f2e0
Коммит 76c1f76eae
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -1110,7 +1110,8 @@ suite('blobservice-tests', function () {
assert.equal(error3, null);
var blockList = {
LatestBlocks: ['id1', 'id2']
LatestBlocks: ['id1'],
UncommittedBlocks: ['id2']
};
blobService.commitBlobBlocks(containerName, blobName, blockList, function (error4) {
@ -1125,7 +1126,7 @@ suite('blobservice-tests', function () {
done();
});
});
});
});
});
});
});
@ -1160,4 +1161,4 @@ function repeat(s, n) {
ret += s;
}
return ret;
};
};