There was an error while loading. Please reload this page.
1 parent 1bf5553 commit 9338066Copy full SHA for 9338066
app/test_calculator.py
@@ -1,6 +1,10 @@
1
+import random
2
from .calculator import Calculator
3
4
5
+def test_flaky():
6
+ assert random.random() <= 0.8
7
+
8
def test_add():
9
assert Calculator.add(1, 2) == 3.0
10
assert Calculator.add(1.0, 2.0) == 3.0
0 commit comments