Merge pull request #2730 from elemoine/tolowercase

Do not call toLowerCase when forming a change:property event
This commit is contained in:
Éric Lemoine
2014-09-19 11:07:17 +02:00
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']);
});