Test the right class

This commit is contained in:
John Firebaugh 2012-10-06 11:01:17 -07:00
parent c3ad2bc0c3
commit 2cca6586dc

View File

@ -2,10 +2,10 @@ describe('LatLngBounds', function() {
var a, c;
beforeEach(function() {
a = new L.Bounds(
new L.Point(14, 12),
new L.Point(30, 40));
c = new L.Bounds();
a = new L.LatLngBounds(
new L.LatLng(14, 12),
new L.LatLng(30, 40));
c = new L.LatLngBounds();
});
describe('#isValid', function() {