Tweaked unit test to include uncommitted block
This commit is contained in:
Родитель
3e1567f2e0
Коммит
76c1f76eae
|
@ -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;
|
||||
};
|
||||
};
|
||||
|
|
Загрузка…
Ссылка в новой задаче