Skip to content

Commit

Permalink
Use client=False in test_analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonbb committed Dec 5, 2023
1 parent dd22e9e commit 3de618f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tape_tests/test_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def test_analysis_function(cls, dask_client):
"flux": [1.0, 2.0, 5.0, 3.0, 1.0, 2.0, 3.0, 4.0, 5.0],
}
cmap = ColumnMapper(id_col="id", time_col="time", flux_col="flux", err_col="err", band_col="band")
ens = Ensemble(client=dask_client).from_source_dict(rows, column_mapper=cmap)
ens = Ensemble(client=False).from_source_dict(rows, column_mapper=cmap)

assert isinstance(obj.cols(ens), list)
assert len(obj.cols(ens)) > 0
Expand Down

0 comments on commit 3de618f

Please sign in to comment.