Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
falkenhawk committed Dec 16, 2024
1 parent d26814d commit ff025a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/relations/manyToMany/ManyToManyModifyMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ const ManyToManyModifyMixin = (Operation) => {
}
builder.whereInComposite(
joinTableRelatedRefs,
related.map((m) => m.$values(this.relation.relatedProp.props))
related.map((m) => m.$values(this.relation.relatedProp.props)),
);
});
} else if (builder.parentQuery()) {
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/upsertGraph.js
Original file line number Diff line number Diff line change
Expand Up @@ -1355,7 +1355,7 @@ module.exports = (session) => {
return Model1.query(trx)
.findById(2)
.withGraphFetched(
'[model1Relation1, model1Relation2(orderById).model2Relation1(orderById)]'
'[model1Relation1, model1Relation2(orderById).model2Relation1(orderById)]',
);
})
.then(omitIrrelevantProps)
Expand Down Expand Up @@ -1420,7 +1420,7 @@ module.exports = (session) => {

// Row 2 should be deleted.
expect(model2Rows.find((it) => it.id_col == 2)).to.equal(undefined);
}
},
);
});
});
Expand Down

0 comments on commit ff025a6

Please sign in to comment.