Skip to content

Commit

Permalink
docs: fix simple typo, summmary -> summary (#650)
Browse files Browse the repository at this point in the history
There is a small typo in tests/issues/test_issue537.py.

Should read `summary` rather than `summmary`.
  • Loading branch information
timgates42 committed Dec 27, 2020
1 parent 2d304ef commit 9ddf61f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/issues/test_issue537.py
Expand Up @@ -48,7 +48,7 @@ def test_multiprocessing_describe1d():
"""
this test serves to get a large dataset, and ensure that even across parallelised describe1d operations,
there is no ValueError raised. Previously, series.fillna(np.nan,inplace=True) was used instead of
series = series.fillna(np.nan) in model.summmary.describe1d, resulting in a race condition where the underlying
series = series.fillna(np.nan) in model.summary.describe1d, resulting in a race condition where the underlying
df was being mutated by two threads at the same time creating a ValueError. This test checks that this does not
occur again by running a parallelised describe1d and testing if a ValueError is raised.
Expand Down

0 comments on commit 9ddf61f

Please sign in to comment.