Skip to content

Commit

Permalink
Removed console.log call in jsscrubber template
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Jun 4, 2015
1 parent 012959e commit dc3b3c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion holoviews/ipython/jsscrubber.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@
}
Animation.prototype.dynamic_update = function(prev, current){
console.log(current);
var kernel = IPython.notebook.kernel;
if(this.nbagg) {
function callback(msg) { }
Expand Down
4 changes: 2 additions & 2 deletions tests/testwidgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ def tearDown(self):

def test_scrubber_widget_1(self):
html = normalize(ScrubberWidget(self.plot1)())
self.assertEqual(digest_data(html), '7b780efd7898ffd8293598f0d299610b2696b933cdbfc2112dbc778fe921d7ad')
self.assertEqual(digest_data(html), '6e6d7fecec1ad45bd177ce0985597f92447fcd2fc75b83a3841e3f2eac665609')

def test_selection_widget_1(self):
html = normalize(SelectionWidget(self.plot1)())
self.assertEqual(digest_data(html), '79e4ad97b92bd20bf6b63d63f810e6a0686f302014576a877a71f4c4d1ce7bef')

def test_scrubber_widget_2(self):
html = normalize(ScrubberWidget(self.plot2)())
self.assertEqual(digest_data(html), 'd02b3082d0fea63a7a4c233033458097e66db1fe01bfb8941bde4be8854fce68')
self.assertEqual(digest_data(html), '185d051365cd9487893f1cf93b8ee7fb24b81a63f42da54d8ed092471f8aabe6')

def test_selection_widget_2(self):
html = normalize(SelectionWidget(self.plot2)())
Expand Down

0 comments on commit dc3b3c1

Please sign in to comment.