Skip to content

Commit cfde5d5

Browse files
committed
flake flake flake
1 parent 8bb8020 commit cfde5d5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/test_scorep.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ def test_io(scorep_env, instrumenter):
477477
"IO_OPERATION_COMPLETE": file_regex,
478478
"LEAVE": "write",
479479
},
480-
"close": {
480+
"read": {
481481
"ENTER": "read",
482482
"IO_OPERATION_BEGIN": file_regex,
483483
"IO_OPERATION_COMPLETE": file_regex,
@@ -499,9 +499,9 @@ def test_io(scorep_env, instrumenter):
499499
after_expected_io = False
500500

501501
for line in std_out.split("\n"):
502-
if ("user_instrumenter:expect io" in line) and (in_expected_io == False):
502+
if ("user_instrumenter:expect io" in line) and (in_expected_io is False):
503503
in_expected_io = True
504-
elif ("user_instrumenter:expect io" in line) and (in_expected_io == True):
504+
elif ("user_instrumenter:expect io" in line) and (in_expected_io is True):
505505
in_expected_io = False
506506
after_expected_io = True
507507
if in_expected_io:

0 commit comments

Comments
 (0)