Test log2 function

fix typo
This commit is contained in:
mike-000
2020-04-30 19:11:41 +01:00
committed by GitHub
parent d3507e5c5e
commit f91e51c28b

View File

@@ -75,7 +75,7 @@ describe('ol.math.log2', function () {
}); });
it('returns the correct value at -1', function () { it('returns the correct value at -1', function () {
expect(log2(0)).to.eql(NaN); expect(log2(-1)).to.eql(NaN);
}); });
}); });