···107107 'did:key:z6MkjwbBXZnFqL8su24wGL2Fdjti6GSLv9SWdYGswfazUPm9'
108108109109 await client.updateAtprotoKey(did, rotationKey1, newSigningKey)
110110+111111+ // put the old key back so as not to disrupt the other tests
112112+ await client.updateAtprotoKey(did, rotationKey1, signingKey.did())
110113 })
111114112115 it('does not allow syntactically invalid service keys', async () => {
···235238 it('exports the data set', async () => {
236239 const data = await client.export()
237240 expect(data.every((row) => check.is(row, plc.def.exportedOp))).toBeTruthy()
238238- expect(data.length).toBe(29)
241241+ expect(data.length).toBe(31)
239242 for (let i = 1; i < data.length; i++) {
240243 expect(data[i].createdAt >= data[i - 1].createdAt).toBeTruthy()
241244 }