Skip to content

Commit 2897cad

Browse files
author
Tatu Aalto
committed
fix: remove deprecated pandas method
1 parent 837473c commit 2897cad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flaky_tests_detection/check_flakes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def calc_fliprate(testruns: pd.Series) -> float:
3535
previous = None
3636
flips = 0
3737
possible_flips = len(testruns) - 1
38-
for _, val in testruns.iteritems():
38+
for _, val in testruns.items():
3939
if first:
4040
first = False
4141
previous = val

0 commit comments

Comments
 (0)