Skip to content

Commit

Permalink
Fixed bokeh graph plot test
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Feb 13, 2018
1 parent 383690d commit 7e9c3df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testbokehgraphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def setUp(self):
self.weights = np.random.rand(N)
self.graph = Graph(((self.source, self.target),))
self.node_info = Dataset(['Output']+['Input']*(N-1), vdims=['Label'])
self.node_info2 = Dataset(self.weights, vdims='Weight')
self.node_info2 = Dataset(self.weights, vdims='Weight', datatype=['dictionary'])
self.graph2 = Graph(((self.source, self.target), self.node_info))
self.graph3 = Graph(((self.source, self.target), self.node_info2), datatype=['dictionary'])
self.graph4 = Graph(((self.source, self.target, self.weights),), vdims='Weight')
Expand Down

0 comments on commit 7e9c3df

Please sign in to comment.