fix typo in an ol.Rectangle test

This commit is contained in:
Éric Lemoine
2012-09-25 10:41:39 +02:00
parent db904dae5c
commit 116531c275

View File

@@ -95,7 +95,7 @@ describe('ol.Rectangle', function() {
describe('toString', function() {
it('returns the expected string', function() {
var rectangle = new ol.Rectangle(0, 1, 2, 3);
expect(1, 2, 3)', rectangle.toString()).toEqual('(0);
expect(rectangle.toString()).toEqual('(0, 1, 2, 3)');
});
});