scenarios/dyno.py [127:137]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        assert resp.status == 404, resp.status


@scenario(weight=1)
async def scenario_orders(session):
    async with session.get(join(SERVER_URL, 'api', 'orders')) as resp:
        assert resp.status == 200, resp.status


@scenario(weight=1)
async def scenario_orders_id(session):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



scenarios/high_error_rates.py [83:93]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        assert resp.status == 404, resp.status


@scenario(weight=1)
async def scenario_orders(session):
    async with session.get(join(SERVER_URL, 'api', 'orders')) as resp:
        assert resp.status == 200, resp.status


@scenario(weight=1)
async def scenario_orders_id(session):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



