Rename _ol_geom_LineString_ to LineString
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import _ol_Feature_ from '../../../../../src/ol/Feature.js';
|
||||
import _ol_geom_Circle_ from '../../../../../src/ol/geom/Circle.js';
|
||||
import _ol_geom_GeometryCollection_ from '../../../../../src/ol/geom/GeometryCollection.js';
|
||||
import _ol_geom_LineString_ from '../../../../../src/ol/geom/LineString.js';
|
||||
import LineString from '../../../../../src/ol/geom/LineString.js';
|
||||
import _ol_geom_MultiLineString_ from '../../../../../src/ol/geom/MultiLineString.js';
|
||||
import MultiPoint from '../../../../../src/ol/geom/MultiPoint.js';
|
||||
import _ol_geom_MultiPolygon_ from '../../../../../src/ol/geom/MultiPolygon.js';
|
||||
@@ -27,7 +27,7 @@ describe('ol.render.webgl.Immediate', function() {
|
||||
stroke: new _ol_style_Stroke_()
|
||||
});
|
||||
circle = new _ol_geom_Circle_([0, 0], 5);
|
||||
line = new _ol_geom_LineString_([[0, 0], [5, 5]]);
|
||||
line = new LineString([[0, 0], [5, 5]]);
|
||||
multiLine = new _ol_geom_MultiLineString_([[[0, 0], [5, 5]]]);
|
||||
point = new Point([0, 0]);
|
||||
multiPoint = new MultiPoint([[0, 0]]);
|
||||
|
||||
Reference in New Issue
Block a user