Skip to content

Commit

Permalink
[chore] fix lint in cmpEffects (#2389)
Browse files Browse the repository at this point in the history
  • Loading branch information
igorDykhta committed Oct 23, 2023
1 parent 87df119 commit 459ae55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/helpers/comparison-utils.js
Expand Up @@ -205,7 +205,7 @@ export function cmpEffects(t, expectedEffect, actualEffect, opts = {}) {
if (Array.isArray(expectedEffect) && Array.isArray(actualEffect)) {
t.equal(actualEffect.length, expectedEffect.length, 'should have same number of effects');
expectedEffect.forEach((_, i) => {
cmpEffects(t, expectedEffect[i], actualEffect[i], opt, String(i));
cmpEffects(t, expectedEffect[i], actualEffect[i], opts);
});
} else {
if (!expectedEffect || !actualEffect) {
Expand Down

0 comments on commit 459ae55

Please sign in to comment.