To do call toLowerCase when forming a change:property event

This commit is contained in:
Éric Lemoine
2014-09-18 18:39:55 +02:00
parent dfb2734368
commit ad83f83f2c
3 changed files with 4 additions and 4 deletions

View File

@@ -614,8 +614,8 @@ describe('ol.Object', function() {
it('dispatches the expected event', function() {
o.set('K', 1);
expect(listener1).to.be.called();
expect(listener2).to.not.be.called();
expect(listener1).to.not.be.called();
expect(listener2).to.be.called();
expect(o.getKeys()).to.eql(['K']);
});