Skip to content

Commit

Permalink
Merge pull request #87 from srz-zumix/feature/fix_test
Browse files Browse the repository at this point in the history
fix test
  • Loading branch information
srz-zumix authored Jan 14, 2022
2 parents 47c3e0c + d8e180f commit 47468b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_wandbox_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def test_build(self):

def test_bool_options(self):
try:
self.wandbox_cxx([ '--dryrun', '--no-warning', '--cpp-verbose', '--sprout', '--msgpack', '--optimize', '--cpp-pedantic', 'error', '--boost', '1.68.0' ])
self.wandbox_cxx([ '--dryrun', '--no-warning', '--cpp-verbose', '--sprout', '--msgpack', '--optimize', '--cpp-pedantic', 'error', '--boost', '1.78.0' ])
except SystemExit as e:
self.assertEqual(e.code, 0)
output = self.stdoout()
Expand All @@ -144,7 +144,7 @@ def test_bool_options(self):
self.assertTrue('msgpack' in output)
self.assertTrue('optimize' in output)
self.assertTrue('cpp-pedantic-errors' in output)
self.assertTrue('boost-1.68.0-gcc-head' in output)
self.assertTrue('boost-1.78.0-gcc-head' in output)
self.assertTrue('cpp-no-pedantic' not in output)
self.assertTrue('warning' not in output)
else:
Expand Down

0 comments on commit 47468b5

Please sign in to comment.