Fix jwt-token
This commit is contained in:
@@ -392,7 +392,7 @@ describe('Models', () => {
|
||||
});
|
||||
|
||||
expect(detectionWithDevice.device).to.exist;
|
||||
expect(detectionWithDevice.device.id).to.equal(device.id);
|
||||
expect(detectionWithDevice.device.id).to.equal(String(device.id));
|
||||
});
|
||||
});
|
||||
|
||||
@@ -537,7 +537,7 @@ describe('Models', () => {
|
||||
});
|
||||
|
||||
expect(logWithDevice.device).to.exist;
|
||||
expect(logWithDevice.device.id).to.equal(device.id);
|
||||
expect(logWithDevice.device.id).to.equal(String(device.id));
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user