test_spawnpoints: Remove tick to avoid touching the ground
This commit is contained in:
parent
84ca97618a
commit
5a3e1fdbb8
|
@ -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]
|
||||
|
|
Loading…
Reference in New Issue