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