From a29e7027ca2581b08e0dabbd321fe3a2b73cd7dc Mon Sep 17 00:00:00 2001 From: Marc Jansen Date: Wed, 3 Feb 2016 11:19:02 +0100 Subject: [PATCH] Correct assertion message in binarySearch-test --- test/spec/ol/array.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/spec/ol/array.test.js b/test/spec/ol/array.test.js index 4926ddbe10..5f11fe8523 100644 --- a/test/spec/ol/array.test.js +++ b/test/spec/ol/array.test.js @@ -209,7 +209,7 @@ describe('ol.array', function() { describe('single element array with custom comparison function', function() { var g = [1]; - it('should not find 1 at index 0', function() { + it('should find 1 at index 0', function() { var pos = ol.array.binarySearch(g, 1, revNumCompare); expect(pos).to.be(0); });