fixing error with tests

This commit is contained in:
Shelby Sturgis 2015-07-14 11:47:34 -04:00
parent 20102c9663
commit 985e66fbd4

View file

@ -315,11 +315,12 @@ define(function (require) {
expect(minMax.max).to.be(331); expect(minMax.max).to.be(331);
}); });
}); });
});
describe('null value check', function () { describe('null value check', function () {
it('should return false', function () { it('should return false', function () {
var data = new Data(rowsData, {}); var data = new Data(rowsData, {});
expect(data.nullsPresent()).to.be(false); expect(data.hasNullValues()).to.be(false);
}); });
it('should return true', function () { it('should return true', function () {
@ -335,8 +336,7 @@ define(function (require) {
}); });
var data = new Data(nullRowData, {}); var data = new Data(nullRowData, {});
expect(data.nullsPresent()).to.be(true); expect(data.hasNullValues()).to.be(true);
});
}); });
}); });
}); });