Skip to content

Commit f804865

Browse files
committed
move ecdf tests to actually be tested
1 parent efbf18b commit f804865

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

tests/utils/ecdf.py renamed to tests/test_utils/test_ecdf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def test_data():
1515

1616
def test_fractional_ranks(test_data):
1717
post_samples, prior_samples, _ = test_data
18-
# Compute expected result manually
18+
# Compute the expected result manually
1919
expected = np.mean(post_samples < prior_samples[:, np.newaxis, :], axis=1)
2020
result = fractional_ranks(post_samples, prior_samples)
2121
np.testing.assert_almost_equal(result, expected, decimal=6)

tests/utils/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from .assertions import *
22
from .callbacks import *
33
from .check_combinations import *
4-
from .ecdf import *
54
from .jupyter import *
65
from .ops import *

0 commit comments

Comments
 (0)