test_spawnpoints: Remove tick to avoid touching the ground

This commit is contained in:
Daniel Santos-Olivan 2020-12-15 17:02:14 +01:00 committed by bernat
parent 84ca97618a
commit 5a3e1fdbb8
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ class TestSpawnpoints(SyncSmokeTest):
for vehicle in blueprints:
batch = [(vehicle, t) for t in spawn_points]
batch = [carla.command.SpawnActor(*args) for args in batch]
response = self.client.apply_batch_sync(batch, True)
response = self.client.apply_batch_sync(batch, False)
self.assertFalse(any(x.error for x in response))
ids = [x.actor_id for x in response]