Skip to content

Commit efb6079

Browse files
committed
Tolerate missing pricingInfos field in tests
1 parent b4807bc commit efb6079

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ async def _make_actor(
353353
if (actor := actor_client.get()) is not None:
354354
actor_client.update(
355355
pricing_infos=[
356-
*actor['pricingInfos'],
356+
*actor.get('pricingInfos', []),
357357
{
358358
'pricingModel': 'FREE',
359359
},

0 commit comments

Comments
 (0)