(test_ability)
| 32 | |
| 33 | @pytest.fixture |
| 34 | def updated_ability_payload(test_ability): |
| 35 | ability_data = test_ability.schema.dump(test_ability) |
| 36 | ability_data.update(dict(name='an updated test ability', tactic='defense-evasion', plugin='')) |
| 37 | return ability_data |
| 38 | |
| 39 | |
| 40 | @pytest.fixture |