Skip to content

Commit

Permalink
style(FastMap-spec): lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benlesh committed Nov 18, 2015
1 parent d45f672 commit 7f892ad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec/util/FastMap-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ describe('FastMap', function () {
var thisArg = {};

map.forEach(function (value, key) {
expect(this).toBe(thisArg);
expect(value).toBe(expectedValues.shift());
expect(key).toBe(expectedKeys.shift());
}, thisArg);
expect(this).toBe(thisArg);
expect(value).toBe(expectedValues.shift());
expect(key).toBe(expectedKeys.shift());
}, thisArg);

expect(expectedValues.length).toBe(0);
expect(expectedKeys.length).toBe(0);
Expand Down

0 comments on commit 7f892ad

Please sign in to comment.