Skip to content
Snippets Groups Projects
Commit 6c5ee749 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

ControlTest: replace printfunc with print

parent 9851dcac
No related branches found
No related tags found
2 merge requests!708902024-04-25: merge of 24.0 into main,!70857Replace printfunc with print
......@@ -34,7 +34,7 @@ class TestAlg(PyAthena.Alg):
pass # class TestAlg
def test_lock():
printfunc ('test lock')
print ('test lock')
sg = PyAthena.py_svc('StoreGateSvc')
ei = PyAthena.EventInfo()
sg.record (ei, 'EventInfo')
......@@ -46,7 +46,7 @@ def test_lock():
assert (not ll.m_locked)
sg.setConst (ll).ignore()
assert (ll.m_locked)
printfunc ('done test lock')
print ('done test lock')
import sys
sys.stdout.flush()
return
......@@ -62,9 +62,9 @@ for _ in range(10):
test_lock()
theApp.finalize().ignore()
printfunc ("="*80)
printfunc ("test [OK]")
printfunc ("="*80)
print ("="*80)
print ("test [OK]")
print ("="*80)
theApp.exit()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment