Skip to content

Commit b8cb354

Browse files
committed
Fix one more python 2 reference
1 parent bccf97a commit b8cb354

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ipywidgets/widgets/tests/test_widget_output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def test_append_display_data():
202202

203203
# Now try appending an Image.
204204
image_data = b"foobar"
205-
image_data_b64 = image_data if sys.version_info[0] < 3 else 'Zm9vYmFy\n'
205+
image_data_b64 = 'Zm9vYmFy\n'
206206

207207
widget.append_display_data(Image(image_data, width=123, height=456))
208208
expected += (

0 commit comments

Comments
 (0)