From c1d1bd642d152f05ff5bcf64b4630e059c681ba7 Mon Sep 17 00:00:00 2001 From: tvalentyn Date: Tue, 14 May 2024 08:04:27 -0700 Subject: [PATCH] Fix a typo in skip condition. (#31267) --- sdks/python/apache_beam/dataframe/frames_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdks/python/apache_beam/dataframe/frames_test.py b/sdks/python/apache_beam/dataframe/frames_test.py index b3ddfee95fca..076ab504adde 100644 --- a/sdks/python/apache_beam/dataframe/frames_test.py +++ b/sdks/python/apache_beam/dataframe/frames_test.py @@ -1449,7 +1449,7 @@ def test_unstack_pandas_example2(self): self._run_test(lambda s: s.unstack(level=0), s) @unittest.skipIf( - sys.version_info >= (2, 12) and PD_VERSION < (2, 3), + sys.version_info >= (3, 12) and PD_VERSION < (2, 3), 'https://github.com/pandas-dev/pandas/issues/58604') def test_unstack_pandas_example3(self): index = self._unstack_get_categorical_index()