Skip to content

Commit

Permalink
correct test name to maximum instead of minimum
Browse files Browse the repository at this point in the history
  • Loading branch information
malindamiller committed Jul 12, 2016
1 parent 35d06c6 commit 8f42d00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/algorithms/geometric-test.js
Expand Up @@ -21,7 +21,7 @@ describe('geometric algorithm', () => {
assert.equal(Math.round(positionFromValue), 0);
});

it('should handle the minimum end of the range correctly', () => {
it('should handle the maximum end of the range correctly', () => {
const min = casual.integer(0, 899);
const max = casual.integer(900, 1000);
const value = geometric.getValue(100, min, max);
Expand Down

0 comments on commit 8f42d00

Please sign in to comment.