Skip to content

Commit

Permalink
removed failing pprints
Browse files Browse the repository at this point in the history
  • Loading branch information
scopatz committed Nov 18, 2015
1 parent 9c0d7a4 commit 7fac90e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ python:
# We don't actually use the Travis Python, but this keeps it organized.
- "2.7"
- "3.4"
- "3.5"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y gfortran
Expand Down
4 changes: 0 additions & 4 deletions tests/test_stlcontainers.py
Original file line number Diff line number Diff line change
Expand Up @@ -656,8 +656,6 @@ def test_map_str_vector_double():
uismap = isinstance([1.0, -65.5555, 1.0, -65.5555], Mapping)
m['Aha'] = [42.42, 18, 42.42, 18]
m['Take'] = [1.0, -65.5555, 1.0, -65.5555]
import pprint
pprint.pprint(m)
assert_equal(len(m), 2)
if uismap:
for key, value in m['Take'].items():
Expand Down Expand Up @@ -711,8 +709,6 @@ def test_map_int_vector_double():
uismap = isinstance([1.0, -65.5555, 1.0, -65.5555], Mapping)
m[1] = [42.42, 18, 42.42, 18]
m[42] = [1.0, -65.5555, 1.0, -65.5555]
import pprint
pprint.pprint(m)
assert_equal(len(m), 2)
if uismap:
for key, value in m[42].items():
Expand Down

0 comments on commit 7fac90e

Please sign in to comment.