Skip to content

Commit

Permalink
Update string-to-camel-test.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Monkeychip authored Jan 9, 2025
1 parent dcea9ff commit dc3ad2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/tests/integration/helpers/string-to-camel-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module('Integration | Helper | string-to-camel', function (hooks) {
assert.deepEqual(result, expected, 'camelCase array of strings returned for all sorts of strings');
});

test('it returns camelCased string if string contains numbers', function (assert) {
test('it returns string if string is numbers', function (assert) {
const string = '123';
const expected = '123';
const result = stringToCamelCase(string);
Expand Down

0 comments on commit dc3ad2c

Please sign in to comment.