Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove old unnecessary SkipTest #190

Merged
merged 2 commits into from
Apr 15, 2014
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Fixes
* Restored fast renderers for scatterplots that were unintentionally removed in
PR#101 (PR#175).
* Make the `alpha` attribute of scatter plots work as intended (PR#164).

* Resume running test for empty container that has been skipped (PR#190).

Release 4.4.1
-------------
Expand Down
11 changes: 0 additions & 11 deletions chaco/tests/plotcontainer_test_case.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import sys
import unittest

import nose

from chaco.api import HPlotContainer, OverlayPlotContainer, \
PlotComponent, VPlotContainer, GridContainer
from traits.api import Any, Tuple
Expand Down Expand Up @@ -399,15 +397,6 @@ def test_overlapping_mixed_resizable_static(self):
class GridContainerTestCase(ContainerTestCase):

def test_empty_container(self):
# FIXME:
# This test is failing when run with nosetests and coverage.
# Therefore, it is skipped when coverage is imported.
# If you want to fix this, please look at:
# https://svn.enthought.com/enthought/ticket/1618
# where I posted more details about this problem.
if 'coverage' in sys.modules:
raise nose.SkipTest

cont = GridContainer(shape=(1,1))
cont.bounds = [100,100]
cont.do_layout()
Expand Down