fix comment handling

This commit is contained in:
Matias Alejo Garcia 2014-08-06 15:56:17 -03:00
commit ddc8649bd3
4 changed files with 8 additions and 6 deletions

View file

@ -106,9 +106,10 @@ describe('TxProposals', function() {
});
});
describe.skip('#merge', function() {
it('mergeFromObj', function() {
it('should merge', function() {
var txps = new TxProposals();
txps.mergeFromObj(dummyProposal.toObj());
var d = dummyProposal;
txps.merge(d.toObj(),{});
});
});
});