fixing based on CJs last comments

This commit is contained in:
ppisljar 2016-12-01 17:05:31 +01:00
parent 69a53eaf26
commit 9e8d71f882
2 changed files with 2 additions and 3 deletions

View file

@ -83,7 +83,7 @@ describe('Vislib VisConfig Class Test Suite', function () {
describe('get Method', function () {
it('should be a function', function () {
expect(_.isFunction(visConfig.set)).to.be(true);
expect(typeof visConfig.get).to.be('function');
});
it('should get the property', function () {
@ -104,7 +104,7 @@ describe('Vislib VisConfig Class Test Suite', function () {
describe('set Method', function () {
it('should be a function', function () {
expect(_.isFunction(visConfig.set)).to.be(true);
expect(typeof visConfig.set).to.be('function');
});
it('should set a property', function () {

View file

@ -7,7 +7,6 @@ import AxisLabelsProvider from './axis_labels';
import AxisScaleProvider from './axis_scale';
import AxisConfigProvider from './axis_config';
import errors from 'ui/errors';
import SCALE_MODES from './scale_modes';
export default function AxisFactory(Private) {
const ErrorHandler = Private(ErrorHandlerProvider);