From 298e6f792b495ea45f21de6a3ecc89e9f49cc6e3 Mon Sep 17 00:00:00 2001 From: Jonathan Foster Date: Tue, 19 Sep 2023 12:49:53 -0400 Subject: [PATCH] Fix codestyle --- glue/core/data_factories/tests/test_pandas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glue/core/data_factories/tests/test_pandas.py b/glue/core/data_factories/tests/test_pandas.py index 478a648cf..57c4d9aea 100644 --- a/glue/core/data_factories/tests/test_pandas.py +++ b/glue/core/data_factories/tests/test_pandas.py @@ -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])