Skip to content

Commit 8811652

Browse files
kriszypclaude
andcommitted
style: run prettier on the new aliasing regression test
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
1 parent 100f107 commit 8811652

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

unitTests/resources/query.test.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,11 @@ describe('Querying through Resource API', () => {
830830
const object = { manyToManyIds: [] };
831831
const resolved = many_to_many_attribute.resolve(object);
832832
resolved.push('unrelated');
833-
assert.deepEqual(object.manyToManyIds, [], 'mutating the resolved empty array must not alias the stored FK array');
833+
assert.deepEqual(
834+
object.manyToManyIds,
835+
[],
836+
'mutating the resolved empty array must not alias the stored FK array'
837+
);
834838
});
835839

836840
it('Query by join with many-to-many (reverse)', async function () {

0 commit comments

Comments
 (0)