Skip to content

Commit

Permalink
Fix attribute assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Apr 8, 2024
1 parent 7674d45 commit 67d73f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datashader/tests/test_dask.py
Original file line number Diff line number Diff line change
Expand Up @@ -2385,7 +2385,7 @@ def test_dask_categorical_counts(on_gpu):
)
ddf = dd.from_pandas(df, npartitions=2)
assert ddf.npartitions == 2
ddf.cat = ddf.cat.astype('category')
ddf["cat"] = ddf.cat.astype('category')

# Categorical counts at the dataframe level to confirm test is reasonable.
cat_totals = ddf.cat.value_counts().compute()
Expand Down

0 comments on commit 67d73f5

Please sign in to comment.