Centos8 compat (#908)

make print statements in tests python3 compatible
This commit is contained in:
Scott Fennell
2019-11-18 10:10:33 -06:00
committed by GitHub
parent 0d5aa45c20
commit ff771f7bd6
5 changed files with 19 additions and 19 deletions

View File

@ -26,7 +26,7 @@ def main():
trick.var_set("test_io.dp", trick.get_address("test_io.d13"))
TRICK_EXPECT_EQ( str(test_io.dp) , "[113]", test_suite , "var set address" )
print test_io
print(test_io)
if __name__ == "__main__":
main()