Rename ol.format.Format to ol.format.Feature

This commit is contained in:
Tom Payne
2014-02-28 13:05:57 +01:00
parent c6df670a55
commit ea8944c755
12 changed files with 92 additions and 92 deletions

View File

@@ -32,7 +32,7 @@ describe('ol.format.TopoJSON', function() {
describe('constructor', function() {
it('creates a new format', function() {
expect(format).to.be.a(ol.format.Format);
expect(format).to.be.a(ol.format.Feature);
expect(format).to.be.a(ol.format.TopoJSON);
});
});
@@ -97,5 +97,5 @@ describe('ol.format.TopoJSON', function() {
goog.require('ol.Feature');
goog.require('ol.geom.MultiPolygon');
goog.require('ol.geom.Polygon');
goog.require('ol.format.Format');
goog.require('ol.format.Feature');
goog.require('ol.format.TopoJSON');