fix(common/models/templates): unit test patchup post maxP -> p

This commit is contained in:
Joshua A. Horton 2024-03-14 21:52:40 +07:00
parent 6de595394b
commit e0892deccf

View file

@ -365,6 +365,6 @@ describe('Trie traversal abstractions', function() {
p: 1/2
}
]);
assert.equal(eNode.maxP, 0.5);
assert.equal(eNode.p, 0.5);
});
});