Skip to content

Commit

Permalink
Update tests for Python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
pfernique committed Sep 6, 2017
1 parent 3e22d2f commit 422bc67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ def setUpClass(cls):
autowig.generator.plugin = 'boost_python_internal'
cls.tgt = Path('.').abspath()/'doc'/'examples'/'basic'/'src'/'py'
if any(platform.win32_ver()):
cls.src = Path(sys.prefix).abspath()/'include'/'basic'
else:
cls.src = Path(sys.prefix).abspath()/'Library'/'include'/'basic'
else:
cls.src = Path(sys.prefix).abspath()/'include'/'basic'

def test_mapping_export(self):
"""Test `mapping` export"""
Expand Down

0 comments on commit 422bc67

Please sign in to comment.