diff --git a/coverage_badge.svg b/coverage_badge.svg
index 5d9f923..8577e9e 100644
--- a/coverage_badge.svg
+++ b/coverage_badge.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/src/__tests__/internal/deployment.test.js b/src/__tests__/internal/deployment.test.js
index fc79222..2157851 100644
--- a/src/__tests__/internal/deployment.test.js
+++ b/src/__tests__/internal/deployment.test.js
@@ -649,12 +649,10 @@ describe('Deployment', () => {
// Jump the "current time" by MAX_TIMEOUT ever time Date.now is called
const _now = Date.now
let nowCalls = 0
- const nowSpy = jest
- .spyOn(Date, 'now')
- .mockImplementation(() => {
- nowCalls++
- return _now() + (MAX_TIMEOUT * nowCalls)
- })
+ const nowSpy = jest.spyOn(Date, 'now').mockImplementation(() => {
+ nowCalls++
+ return _now() + MAX_TIMEOUT * nowCalls
+ })
// Create the deployment
const deployment = new Deployment()