diff --git a/thicket/tests/test_columnar_join.py b/thicket/tests/test_columnar_join.py index 33407576..b74c598e 100644 --- a/thicket/tests/test_columnar_join.py +++ b/thicket/tests/test_columnar_join.py @@ -49,8 +49,9 @@ def test_columnar_join(columnar_join_thicket): ) # PerfData and StatsFrame nodes should be in the same order. - assert (pd.unique(combined_th.dataframe.reset_index()["node"].tolist()) == pd.unique( - combined_th.statsframe.dataframe.reset_index()["node"].tolist()) + assert ( + pd.unique(combined_th.dataframe.reset_index()["node"].tolist()) + == pd.unique(combined_th.statsframe.dataframe.reset_index()["node"].tolist()) ).all()