Skip to content

Commit 76a8b46

Browse files
fix(client): corrected the test-utils file
1 parent f14caeb commit 76a8b46

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

packages/client/test-utils.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ const testAgents: Record<Handle, Agent> = {
1111
};
1212

1313
function createTestAgent(handle: Handle) {
14-
return createAgent(
15-
{
14+
return createAgent({
15+
credentials: {
1616
identifier: handle,
1717
password: 'password',
1818
},
19-
{ service: inject('testPdsUrl') },
20-
);
19+
options: { service: inject('testPdsUrl') },
20+
});
2121
}
2222

2323
/**

0 commit comments

Comments
 (0)