Skip to content

Commit

Permalink
Fixed widget SHA tests
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Dec 1, 2015
1 parent a916988 commit 67f00fa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/testwidgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,16 @@ def tearDown(self):

def test_scrubber_widget_1(self):
html = normalize(ScrubberWidget(self.plot1, display_options={'figure_format': 'png'})())
self.assertEqual(digest_data(html), '61d1b1a41e3a06899110c36e23c5db85d3dba064ca26470f932f2c1d6c3497b4')
self.assertEqual(digest_data(html), 'fe2b1464f4c2816d92b51653c3b87e8520d9555098a3e14ef095ddd7b37d1f1f')

def test_scrubber_widget_2(self):
html = normalize(ScrubberWidget(self.plot2, display_options={'figure_format': 'png'})())
self.assertEqual(digest_data(html), 'ce0d3917cf72e4ffc87f9b91afd5dfaa302263d818fd784f72ee4c0d8b1a3a40')
self.assertEqual(digest_data(html), 'a5c378eb79580246d8536d3ecc2bd512cb01fce5338ad235023d955e04faa69f')

def test_selection_widget_1(self):
html = normalize(SelectionWidget(self.plot1, display_options={'figure_format': 'png'})())
self.assertEqual(digest_data(html), '33d07329931a18a0d80accc34e5d3b512043b7b693ca114b616ba2a2a27c8ca9')
self.assertEqual(digest_data(html), '295b69189a8a318d43ec642c0450bfb7acbe9cc810be882380f63e0a73fb7ef1')

def test_selection_widget_2(self):
html = normalize(SelectionWidget(self.plot2, display_options={'figure_format': 'png'})())
self.assertEqual(digest_data(html), '859e6e67eeff3c67805ec3b8a599ae7d038e97e8d74c98e2c8d4811dc553fb61')
self.assertEqual(digest_data(html), 'ef47d8eb030c19e0bfc9a7eb43a7581169122527dc6868890bcdb03104fae266')

0 comments on commit 67f00fa

Please sign in to comment.