Skip to content

Commit

Permalink
UT description update
Browse files Browse the repository at this point in the history
  • Loading branch information
rehanabbasi committed Nov 28, 2018
1 parent ccf68da commit 4236fea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe('#titlecase', function() {
var result = titlecase(testString);
expect(result).to.equal(expectedOutput);
});
it('should return null for non-string input values', function() {
it('should return appropriate message for number type input values', function() {
var testString = 1234;
var expectedOutput = 'Incompatible input type';
var result = titlecase(testString);
Expand Down

0 comments on commit 4236fea

Please sign in to comment.