fix prettier linting problems

This commit is contained in:
Simon Seyock
2021-03-09 09:08:27 +01:00
parent 610896ef95
commit 2b57584180
7 changed files with 226 additions and 209 deletions
+10 -9
View File
@@ -354,16 +354,17 @@ describe('ol.source.WMTS', function () {
const parser = new WMTSCapabilities();
let capabilities;
before(function (done) {
afterLoadText('spec/ol/format/wmts/capabilities_wgs84.xml', function (
xml
) {
try {
capabilities = parser.read(xml);
} catch (e) {
done(e);
afterLoadText(
'spec/ol/format/wmts/capabilities_wgs84.xml',
function (xml) {
try {
capabilities = parser.read(xml);
} catch (e) {
done(e);
}
done();
}
done();
});
);
});
it('returns correct bounding box', function () {