Skip to content

Commit

Permalink
Merge pull request #2900 from bytbox/master
Browse files Browse the repository at this point in the history
TST : Remove no-longer-necessary KnownFail for python 3.2.

no longer needed, because we are no longer testing 3.2
  • Loading branch information
tacaswell committed Sep 6, 2014
2 parents 4d372d2 + 827d4dc commit 80cd156
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions lib/matplotlib/tests/test_animation.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

import os
import tempfile
import sys
import numpy as np
from nose import with_setup
from matplotlib import pyplot as plt
Expand Down Expand Up @@ -37,10 +36,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

0 comments on commit 80cd156

Please sign in to comment.