Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion js_src/rdm.js
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ angular.module('rdmApp', [])
var data = return_data[1];

if (data.length !== RDM.EUID_SIZE) {
$scope.error = 'Invalid EUID: insufficent data, should be 16 bytes';
$scope.error = 'Invalid EUID: insufficient data, should be 16 bytes';
return;
}

Expand Down
2 changes: 1 addition & 1 deletion unit-test-js/tests/rdm.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ describe('rdmApp', function() {
converter.euid = '';
converter.convertToUID();
expect(converter.error).toEqual(
'Invalid EUID: insufficent data, should be 16 bytes');
'Invalid EUID: insufficient data, should be 16 bytes');
expect(converter.uid).toEqual('');
});

Expand Down