mirror of
https://github.com/apache/superset.git
synced 2026-04-26 03:24:53 +00:00
chore(tests): Spelling (#25454)
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> Co-authored-by: Evan Rusackas <evan@preset.io> Co-authored-by: John Bodley <4567245+john-bodley@users.noreply.github.com>
This commit is contained in:
@@ -101,7 +101,7 @@ def test_pivot_fill_values():
|
||||
|
||||
def test_pivot_fill_column_values():
|
||||
"""
|
||||
Make sure pivot witn null column names returns correct DataFrame
|
||||
Make sure pivot with null column names returns correct DataFrame
|
||||
"""
|
||||
df_copy = categories_df.copy()
|
||||
df_copy["category"] = None
|
||||
|
||||
@@ -120,7 +120,7 @@ def test_should_raise_exception_duplication():
|
||||
)
|
||||
|
||||
|
||||
def test_should_raise_exception_duplication_on_multiindx():
|
||||
def test_should_raise_exception_duplication_on_multiindex():
|
||||
iterables = [["m1", "m2"], ["a", "b"], ["x", "y"]]
|
||||
columns = pd.MultiIndex.from_product(iterables, names=[None, "level1", "level2"])
|
||||
df = pd.DataFrame(index=[0, 1, 2], columns=columns, data=1)
|
||||
|
||||
Reference in New Issue
Block a user