Skip to content

Commit

Permalink
fixes code style
Browse files Browse the repository at this point in the history
  • Loading branch information
chrvadala committed Feb 12, 2024
1 parent 5b11553 commit f077b88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test-e2e/e2e.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ describe('gatt e2e', () => {
})
})

console.log({notifiedString: res.toString()})
console.log({ notifiedString: res.toString() })
expect(res).toBeInstanceOf(Buffer)
expect(res.toString().startsWith("Notification data")).toBeTruthy()
expect(res.toString().startsWith('Notification data')).toBeTruthy()

await notifiableCharacteristic.stopNotifications()
})
Expand Down

0 comments on commit f077b88

Please sign in to comment.