Skip to content

Commit ff025a6

Browse files
committed
chore: fix lint
1 parent d26814d commit ff025a6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/relations/manyToMany/ManyToManyModifyMixin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ const ManyToManyModifyMixin = (Operation) => {
155155
}
156156
builder.whereInComposite(
157157
joinTableRelatedRefs,
158-
related.map((m) => m.$values(this.relation.relatedProp.props))
158+
related.map((m) => m.$values(this.relation.relatedProp.props)),
159159
);
160160
});
161161
} else if (builder.parentQuery()) {

tests/integration/upsertGraph.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1355,7 +1355,7 @@ module.exports = (session) => {
13551355
return Model1.query(trx)
13561356
.findById(2)
13571357
.withGraphFetched(
1358-
'[model1Relation1, model1Relation2(orderById).model2Relation1(orderById)]'
1358+
'[model1Relation1, model1Relation2(orderById).model2Relation1(orderById)]',
13591359
);
13601360
})
13611361
.then(omitIrrelevantProps)
@@ -1420,7 +1420,7 @@ module.exports = (session) => {
14201420

14211421
// Row 2 should be deleted.
14221422
expect(model2Rows.find((it) => it.id_col == 2)).to.equal(undefined);
1423-
}
1423+
},
14241424
);
14251425
});
14261426
});

0 commit comments

Comments
 (0)