fix: revert remaining changed weights
This commit is contained in:
parent
c6335b4f57
commit
91967ef920
2 changed files with 2 additions and 2 deletions
|
@ -116,7 +116,7 @@ function tableArbitrary(tableSchema, extraArbs, requiredKeys = []) {
|
|||
return arb;
|
||||
}
|
||||
|
||||
function makeTransaction({ splitFreq = 0.1, payeeIds } = {}) {
|
||||
function makeTransaction({ splitFreq = 1, payeeIds } = {}) {
|
||||
let payeeField = payeeIds
|
||||
? { payee: fc.oneof(...payeeIds.map(id => fc.constant(id))) }
|
||||
: null;
|
||||
|
|
|
@ -319,7 +319,7 @@ describe('transaction executors', () => {
|
|||
fc
|
||||
.asyncProperty(
|
||||
arbs.makeTransactionArray({
|
||||
splitFreq: 10,
|
||||
splitFreq: 0.1,
|
||||
payeeIds,
|
||||
maxLength: 100
|
||||
}),
|
||||
|
|
Loading…
Reference in a new issue