Skip to content

Commit 80cd156

Browse files
committed
Merge pull request #2900 from bytbox/master
TST : Remove no-longer-necessary KnownFail for python 3.2. no longer needed, because we are no longer testing 3.2
2 parents 4d372d2 + 827d4dc commit 80cd156

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

lib/matplotlib/tests/test_animation.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
import os
77
import tempfile
8-
import sys
98
import numpy as np
109
from nose import with_setup
1110
from matplotlib import pyplot as plt
@@ -37,10 +36,6 @@ def check_save_animation(writer, extension='mp4'):
3736
if 'mencoder' in writer:
3837
raise KnownFailureTest("mencoder is broken")
3938

40-
ver = sys.version_info
41-
if ver[0] == 3 and ver[1] == 2:
42-
raise KnownFailureTest("animation saving broken on 3.2")
43-
4439
fig, ax = plt.subplots()
4540
line, = ax.plot([], [])
4641

0 commit comments

Comments
 (0)