test_snapshopt: Remove tick to avoid touching the ground

This commit is contained in:
Daniel Santos-Olivan 2020-12-15 17:17:06 +01:00 committed by bernat
parent b5f12907e7
commit d75b6e989b
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ class TestSnapshot(SyncSmokeTest):
vehicles = self.world.get_blueprint_library().filter('vehicle.*')
batch = [(random.choice(vehicles), 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]