fix(core): Fix typos in common error messages (no-changelog) (#9478)

This commit is contained in:
pemontto
2024-05-22 08:57:34 +01:00
committed by GitHub
parent 9da93680c2
commit 7cb431f506
2 changed files with 7 additions and 7 deletions

View File

@@ -81,7 +81,7 @@ describe('NodeErrors tests', () => {
const nodeOperationError = new NodeOperationError(node, 'ENOTFOUND test error message');
expect(nodeOperationError.message).toEqual(
'The connection cannot be established, this usually occurs due to an incorrect host(domain) value',
'The connection cannot be established, this usually occurs due to an incorrect host (domain) value',
);
});
@@ -89,7 +89,7 @@ describe('NodeErrors tests', () => {
const nodeApiError = new NodeApiError(node, { message: 'ENOTFOUND test error message' });
expect(nodeApiError.message).toEqual(
'The connection cannot be established, this usually occurs due to an incorrect host(domain) value',
'The connection cannot be established, this usually occurs due to an incorrect host (domain) value',
);
});