We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c583078 + 2b9bbe5 commit cbdb3c1Copy full SHA for cbdb3c1
test/model/mosaic/MosaicNonce.spec.ts
@@ -24,7 +24,7 @@ describe('MosaicNonce', () => {
24
it('should be created from Uint8Array', () => {
25
const nonce = new MosaicNonce(new Uint8Array([0x0, 0x0, 0x0, 0x0]));
26
deepEqual(nonce.nonce, new Uint8Array([0x0, 0x0, 0x0, 0x0]));
27
- deepEqual(nonce.toDTO(), [0, 0, 0, 0]);
+ deepEqual(nonce.toDTO(), new Uint8Array([0x0, 0x0, 0x0, 0x0]));
28
});
29
30
it('should create random nonce', () => {
0 commit comments