remove deprecated imageSmoothing

This commit is contained in:
mike-000
2022-08-03 11:43:04 +01:00
parent aee389e2b7
commit 27a9f056e0
28 changed files with 20 additions and 203 deletions

View File

@@ -151,15 +151,6 @@ describe('ol/source/Zoomify', function () {
const source = new Zoomify({interpolate: false, url: '', size: [47, 11]});
expect(source.getInterpolate()).to.be(false);
});
it('is false if constructed with imageSmoothing: false', function () {
const source = new Zoomify({
imageSmoothing: false,
url: '',
size: [47, 11],
});
expect(source.getInterpolate()).to.be(false);
});
});
describe('generated tileGrid', function () {