[test][xs]: remove dataset.query calls in map tests as no longer needed (since 02d152c5ad2a68e8b80ed63c636e2d6e4c3d084a I think).

This commit is contained in:
Rufus Pollock 2012-09-08 18:48:54 +01:00
parent 3742c7b9da
commit 763de67596

View File

@ -32,9 +32,6 @@ test('basics', function () {
$('.fixtures').append(view.el);
view.render();
//Fire query, otherwise the map won't be initialized
dataset.query();
assertPresent('.editor-field-type', view.elSidebar);
// Check that the Leaflet map was set up
@ -95,9 +92,6 @@ test('GeoJSON geom field', function () {
$('.fixtures').append(view.el);
view.render();
//Fire query, otherwise the map won't be initialized
dataset.query();
// Check that all features were created
equal(_getFeaturesCount(view.features),3);
@ -143,9 +137,6 @@ test('Popup', function () {
$('.fixtures').append(view.el);
view.render();
//Fire query, otherwise the map won't be initialized
dataset.query();
var marker = view.el.find('.leaflet-marker-icon').first();
assertPresent(marker);