Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Unticketed] Fix a flaky test due to agency ID conflict (#3344)
## Summary ### Time to review: __2 mins__ ## Changes proposed Remove ID setting in factories for agency to avoid issue where tests tried to create an ID that already was created by factory ## Context for reviewers When our code runs and creates a record with an integer ID it uses a DB sequence to get the next value. However, the factory was managing its own sequence which meant that if a test tried to create an agency, it ran into an issue. We don't need this sequence logic for anything and can rely on the DB to avoid any conflicts
- Loading branch information