mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
ff771f7bd6
make print statements in tests python3 compatible
19 lines
309 B
Python
19 lines
309 B
Python
|
|
import math
|
|
from trick.unit_test import *
|
|
|
|
def main():
|
|
tso.tobj.TTT_var.aa = 1000
|
|
tso.tobj.TTT_var.bb = 2000
|
|
|
|
print ("tso.tobj.TTT_var.aa =") , tso.tobj.TTT_var.aa
|
|
print ("tso.tobj.TTT_var.bb =") , tso.tobj.TTT_var.bb
|
|
|
|
trick.checkpoint_end(True)
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|
|
|
|
|