Skip to content

Commit

Permalink
fix: failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wwills2 committed Dec 17, 2024
1 parent 273aac7 commit c393204
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/models/organizations/organizations.model.js
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,10 @@ class Organization extends Model {
* @throws Error on failure. call in a try block
*/
static async reconcileOrganization(organization) {
if (USE_SIMULATOR) {
return;
}

if (!organization) {
throw new Error('organization to reconcile must not be nil');
}
Expand Down

0 comments on commit c393204

Please sign in to comment.