trying to fix test errors

This commit is contained in:
Shelby Sturgis 2014-09-12 01:42:05 +03:00
parent 31ec94fe68
commit a406c94570
2 changed files with 3 additions and 4 deletions

View file

@ -84,11 +84,11 @@ define(function (require) {
XAxis = Private(require('components/vislib/lib/x_axis'));
el = d3.select('body').append('div')
.attr('class', 'x-axis-wrapper');
.attr('class', 'x-axis-wrapper')
.style('height', '40px');
fixture = el.append('div')
.attr('class', 'x-axis-div')
.style('height', '40px');
.attr('class', 'x-axis-div');
dataObj = new Data(data, {});
xAxis = new XAxis({

View file

@ -126,7 +126,6 @@ define(function (require) {
el = d3.select('body').append('div')
.attr('class', 'y-axis-wrapper')
.style('width', '40px')
.style('height', '40px')
.datum(data);