Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
atlas
athena
Commits
6c5ee749
Commit
6c5ee749
authored
10 months ago
by
Frank Winklmeier
Browse files
Options
Downloads
Patches
Plain Diff
ControlTest: replace printfunc with print
parent
9851dcac
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!70890
2024-04-25: merge of 24.0 into main
,
!70857
Replace printfunc with print
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
AtlasTest/ControlTest/share/test_interactive_athena.py
+5
-5
5 additions, 5 deletions
AtlasTest/ControlTest/share/test_interactive_athena.py
with
5 additions
and
5 deletions
AtlasTest/ControlTest/share/test_interactive_athena.py
+
5
−
5
View file @
6c5ee749
...
...
@@ -34,7 +34,7 @@ class TestAlg(PyAthena.Alg):
pass
# class TestAlg
def
test_lock
():
print
func
(
'
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
)
print
func
(
'
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
()
print
func
(
"
=
"
*
80
)
print
func
(
"
test [OK]
"
)
print
func
(
"
=
"
*
80
)
print
(
"
=
"
*
80
)
print
(
"
test [OK]
"
)
print
(
"
=
"
*
80
)
theApp
.
exit
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment