Skip to content

Commit

Permalink
Re-activate test as it stopped failing
Browse files Browse the repository at this point in the history
Switching py33-green to actually run w/ Python 3.3 helped. Leaving #8 open
though since it didn't make any sense. Waiting if it'll re-appear.
  • Loading branch information
hynek committed Oct 22, 2013
1 parent 54334b8 commit ef689c0
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions tests/test_threadlocal.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,13 +126,11 @@ def test_iter_works(self, D):
d = D({'a': 42})
assert ['a'] == list(iter(d))

# TODO: this fails on py33-green on Travis but *not* locally when
# unrelated code has been added.
# def test_non_dunder_proxy_works(self, D):
# d = D({'a': 42})
# assert 1 == len(d)
# d.clear()
# assert 0 == len(d)
def test_non_dunder_proxy_works(self, D):
d = D({'a': 42})
assert 1 == len(d)
d.clear()
assert 0 == len(d)

def test_repr(self, D):
r = repr(D({'a': 42}))
Expand Down

0 comments on commit ef689c0

Please sign in to comment.