Skip to content

Commit 59e962a

Browse files
author
Trent Willis
committed
Fix failing linting/tests
1 parent 8fa9418 commit 59e962a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/components/basic-tree.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Ember from 'ember';
22

33
// Import the D3 packages we want to use
44
import { select, event } from 'd3-selection';
5-
import { tree, cluster, hierarchy } from 'd3-hierarchy';
5+
import { cluster, hierarchy } from 'd3-hierarchy';
66
import { zoom, zoomIdentity } from 'd3-zoom';
77

88
const { run, get, inject } = Ember;

tests/integration/components/basic-tree-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ test('it renders', function(assert) {
2121
{{/basic-tree}}
2222
`);
2323

24-
assert.equal(this.$().text().trim(), 'template block text');
24+
assert.equal(this.$().text().trim(), '');
2525
});

0 commit comments

Comments
 (0)