Replace assert in Python import examples with code that always runs.

This commit is contained in:
William S Fulton 2017-08-09 21:15:23 +01:00
commit aedc3c3eaf
6 changed files with 12 additions and 6 deletions

View file

@ -6,4 +6,5 @@ sys.path.insert(0, 'path3')
from brave import robin
assert(robin.run() == "AWAY!")
if not(robin.run() == "AWAY!"):
raise RuntimeError("test failed")