2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-11 18:02:32 +03:00

Fixing forEach test

This commit is contained in:
Rubén Norte
2016-09-12 20:50:41 +02:00
parent 166d68ca1c
commit b8f6f5049c
+1 -1
View File
@@ -54,7 +54,7 @@ describe('utils::forEach', function () {
var data = Object.create(null);
data.foo = 'bar'
forEach(function () {}, function () {
forEach(data, function () {
count++;
});