patch: Fix the sysInfo.getCpuId() test

Signed-off-by: Vipul Gupta (@vipulgupta2048) <vipul@balena.io>
This commit is contained in:
Vipul Gupta (@vipulgupta2048) 2021-04-13 03:19:46 +05:30
parent d058f43feb
commit 50a2f3d313

View File

@ -119,7 +119,7 @@ describe('System information', async () => {
]), ]),
); );
const cpuId = await sysInfo.getCpuId(); const cpuId = await sysInfo.getCpuId();
expect(cpuId).to.equal('1000000001b93f3'); expect(cpuId).to.equal('1000000001b93f3f');
fsStub.restore(); fsStub.restore();
}); });
}); });