From 9eb00686856b29fdf7afc108648c657c23890e4a Mon Sep 17 00:00:00 2001 From: agrawalram020 Date: Tue, 29 Oct 2019 12:40:47 +0530 Subject: [PATCH] 2nd PR --- .gitignore | 4 +++- tests/test_probability.py | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b679e48..f2db475 100644 --- a/.gitignore +++ b/.gitignore @@ -57,4 +57,6 @@ coverage.xml # Sphinx documentation docs/_build/ -.vscode/ \ No newline at end of file +.vscode/ + +##my comment is \ No newline at end of file diff --git a/tests/test_probability.py b/tests/test_probability.py index 669d6ad..1fc3f88 100644 --- a/tests/test_probability.py +++ b/tests/test_probability.py @@ -7,3 +7,5 @@ def test_trials(): assert trials([0.6]) == [0.4, 0.6] assert trials([0.6,0.5]) == [0.2, 0.5, 0.3] assert trials([0.8,0.6,0.25]) == pytest.approx([0.06, 0.35, 0.47, 0.12]) + +# my comment is \ No newline at end of file