[erasure] fix typo
This commit is contained in:
parent
5c2041c0d7
commit
51f25c7655
|
@ -54,7 +54,7 @@ suite "Erasure encode/decode":
|
|||
|
||||
return encoded
|
||||
|
||||
test "Should tolerate loosing M data blocks in a single random column":
|
||||
test "Should tolerate losing M data blocks in a single random column":
|
||||
const
|
||||
buffers = 20
|
||||
parity = 10
|
||||
|
@ -82,7 +82,7 @@ suite "Erasure encode/decode":
|
|||
let present = await store.hasBlock(d)
|
||||
check present.tryGet()
|
||||
|
||||
test "Should not tolerate loosing more than M data blocks in a single random column":
|
||||
test "Should not tolerate losing more than M data blocks in a single random column":
|
||||
const
|
||||
buffers = 20
|
||||
parity = 10
|
||||
|
@ -108,7 +108,7 @@ suite "Erasure encode/decode":
|
|||
let present = await store.hasBlock(d)
|
||||
check not present.tryGet()
|
||||
|
||||
test "Should tolerate loosing M data blocks in M random columns":
|
||||
test "Should tolerate losing M data blocks in M random columns":
|
||||
const
|
||||
buffers = 20
|
||||
parity = 10
|
||||
|
@ -136,7 +136,7 @@ suite "Erasure encode/decode":
|
|||
let present = await store.hasBlock(d)
|
||||
check present.tryGet()
|
||||
|
||||
test "Should not tolerate loosing more than M data blocks in M random columns":
|
||||
test "Should not tolerate losing more than M data blocks in M random columns":
|
||||
const
|
||||
buffers = 20
|
||||
parity = 10
|
||||
|
@ -170,7 +170,7 @@ suite "Erasure encode/decode":
|
|||
expect ResultFailure:
|
||||
decoded = (await erasure.decode(encoded)).tryGet()
|
||||
|
||||
test "Should tolerate loosing M (a.k.a row) contiguous data blocks":
|
||||
test "Should tolerate losing M (a.k.a row) contiguous data blocks":
|
||||
const
|
||||
buffers = 20
|
||||
parity = 10
|
||||
|
@ -186,7 +186,7 @@ suite "Erasure encode/decode":
|
|||
let present = await store.hasBlock(d)
|
||||
check present.tryGet()
|
||||
|
||||
test "Should tolerate loosing M (a.k.a row) contiguous parity blocks":
|
||||
test "Should tolerate losing M (a.k.a row) contiguous parity blocks":
|
||||
const
|
||||
buffers = 20
|
||||
parity = 10
|
||||
|
|
Loading…
Reference in New Issue