Skip to content

Commit 34a9678

Browse files
kevinpjonesclaude
andcommitted
Fix prettier formatting in BankAccountModels unit test
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent b0afca4 commit 34a9678

1 file changed

Lines changed: 7 additions & 10 deletions

File tree

__tests__/BankAccountModels.unit.ts

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -216,18 +216,15 @@ describe("Bank Account Models", () => {
216216
it.each([
217217
["amounts", [1, 2]],
218218
["descriptor_code", "SM11AA"],
219-
])(
220-
"can be created with a provided %s value",
221-
(prop, val) => {
222-
const input = {};
223-
(input as any)[prop] = val;
219+
])("can be created with a provided %s value", (prop, val) => {
220+
const input = {};
221+
(input as any)[prop] = val;
224222

225-
const rec = new BankAccountVerify(input);
223+
const rec = new BankAccountVerify(input);
226224

227-
expect(rec).toBeDefined();
228-
expect((rec as any)[prop]).toEqual(val);
229-
}
230-
);
225+
expect(rec).toBeDefined();
226+
expect((rec as any)[prop]).toEqual(val);
227+
});
231228

232229
it("rejects invalid descriptor_code values", () => {
233230
const rec = new BankAccountVerify();

0 commit comments

Comments
 (0)