Merge "[trivial] fix typo in octavia_dashboard lbaasv2"

This commit is contained in:
Zuul 2018-02-05 23:54:19 +00:00 committed by Gerrit Code Review
commit f0f2d021cb
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@
ctrl.save = save;
ctrl.saving = false;
ctrl.weightError = gettext('The weight must be a number between 1 and 256.');
ctrl.monitorAddressError = gettext('The monitor address must be a vaid IP address.');
ctrl.monitorAddressError = gettext('The monitor address must be a valid IP address.');
ctrl.monitorPortError = gettext('The monitor port must be a number between 1 and 65535.');
ctrl.helpUrl = basePath + 'workflow/members/members.help.html';

View File

@ -70,7 +70,7 @@
expect(ctrl.ipPattern).toBeDefined();
expect(ctrl.helpUrl).toBeDefined();
expect(ctrl.weightError).toBe('The weight must be a number between 1 and 256.');
expect(ctrl.monitorAddressError).toBe('The monitor address must be a vaid IP address.');
expect(ctrl.monitorAddressError).toBe('The monitor address must be a valid IP address.');
expect(ctrl.monitorPortError).toBe('The monitor port must be a number between 1 and 65535.');
});