From 6de80b80da0cbbe7ac06996432e87826ce9e3fe5 Mon Sep 17 00:00:00 2001 From: krlosMata Date: Thu, 29 Feb 2024 22:49:31 +0100 Subject: [PATCH] eslint fix --- src/virtual-counters-manager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/virtual-counters-manager.js b/src/virtual-counters-manager.js index c2de1442..143c86e1 100644 --- a/src/virtual-counters-manager.js +++ b/src/virtual-counters-manager.js @@ -136,7 +136,7 @@ module.exports = class VirtualCountersManager { spentCountersByFunction[this.calledFunc] = spentCounters; } else { Object.keys(this.currentCountersSnapshot).forEach((counter) => { - spentCountersByFunction[this.calledFunc][counter] = spentCountersByFunction[this.calledFunc][counter] + spentCounters[counter]; + spentCountersByFunction[this.calledFunc][counter] += spentCounters[counter]; }); }