Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Dec 18, 2023
1 parent dd16be8 commit ed7e7b7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/test.every.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,11 +157,6 @@ tape( 'the method supports providing an execution context', function test( t ) {
var ctx;
var arr;

function predicate( v ) {
this.count += 1; // eslint-disable-line no-invalid-this
return ( imagf( v ) === realf( v ) );
}

ctx = {
'count': 0
};
Expand All @@ -172,4 +167,9 @@ tape( 'the method supports providing an execution context', function test( t ) {
t.strictEqual( ctx.count, 3, 'returns expected value');

t.end();

function predicate( v ) {
this.count += 1; // eslint-disable-line no-invalid-this
return ( imagf( v ) === realf( v ) );
}
});

0 comments on commit ed7e7b7

Please sign in to comment.