Skip to content

Commit

Permalink
Fix codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
jfoster17 committed Sep 19, 2023
1 parent 57cd80e commit 298e6f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glue/core/data_factories/tests/test_pandas.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def test_translator_from_data():
df = data.get_object()
# Do not specify full error message in case plugins add new translations
assert 'Specify the object class to use with cls' in exc.value.args[0]

df = data.get_object(cls=DataFrame)
assert_equal(list(df.columns), ['a', 'b', 'c'])
assert_equal(df['a'].values, [3, 5, 6, 7])
Expand Down

0 comments on commit 298e6f7

Please sign in to comment.