(event_loop, data_svc, operation, adversary)
| 197 | |
| 198 | @pytest.fixture |
| 199 | def demo_operation(event_loop, data_svc, operation, adversary): |
| 200 | tadversary = event_loop.run_until_complete(data_svc.store(adversary())) |
| 201 | return operation(name='my first op', agents=[], adversary=tadversary) |
| 202 | |
| 203 | |
| 204 | @pytest.fixture |