mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-25 04:36:46 +00:00
Use single quotes for identifiers
This commit is contained in:
@@ -246,14 +246,14 @@ describe('Message', () => {
|
||||
const toVersionX = () => {};
|
||||
assert.throws(
|
||||
() => Message._withSchemaVersion(toVersionX, 2),
|
||||
'"schemaVersion" is invalid'
|
||||
"'schemaVersion' is invalid"
|
||||
);
|
||||
});
|
||||
|
||||
it('should require an upgrade function', () => {
|
||||
assert.throws(
|
||||
() => Message._withSchemaVersion(2, 3),
|
||||
'"upgrade" must be a function'
|
||||
"'upgrade' must be a function"
|
||||
);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user