Skip to content

Commit 261636e

Browse files
committed
BODMAS
1 parent 561332a commit 261636e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/canary/scripts/push_stats_to_cloudwatch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def readXML_and_publish_metrics_to_cw():
1313
failures = testsuite.attrib["failures"]
1414
tests = testsuite.attrib["tests"]
1515
successes = int(tests) - int(failures)
16-
success_rate = successes/int(tests)*100
16+
success_rate = (successes/int(tests))*100
1717
else:
1818
print("f{xml_path} does not exists.")
1919
print(os.getcwd())

0 commit comments

Comments
 (0)