Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions lib/matplotlib/tests/test_animation.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import six

import tempfile
import sys
import numpy as np
from nose import with_setup
from matplotlib import pyplot as plt
Expand Down Expand Up @@ -36,10 +35,6 @@ def check_save_animation(writer, extension='mp4'):
if 'mencoder' in writer:
raise KnownFailureTest("mencoder is broken")

ver = sys.version_info
if ver[0] == 3 and ver[1] == 2:
raise KnownFailureTest("animation saving broken on 3.2")

fig, ax = plt.subplots()
line, = ax.plot([], [])

Expand Down