oncall-engine/engine/apps/heartbeat/tests/factories.py
Joey Orlando fda05a6cc4
chore: remove deprecated slack_channel and heartbeat integration types (#5270)
# What this PR does

See [Slack
discussion](https://raintank-corp.slack.com/archives/C06K1MQ07GS/p1732110700877869)
for more context

## Checklist

- [x] Unit, integration, and e2e (if applicable) tests updated
- [x] Documentation added (or `pr:no public docs` PR label added if not
required)
- [x] Added the relevant release notes label (see labels prefixed w/
`release:`). These labels dictate how your PR will
    show up in the autogenerated release notes.
2024-11-20 11:17:04 -05:00

8 lines
189 B
Python

import factory
from apps.heartbeat.models import IntegrationHeartBeat
class IntegrationHeartBeatFactory(factory.DjangoModelFactory):
class Meta:
model = IntegrationHeartBeat