mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(core): Fix typos in common error messages (no-changelog) (#9478)
This commit is contained in:
@@ -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',
|
||||
);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user