Skip to content

Commit

Permalink
Fix a typo in skip condition. (#31267)
Browse files Browse the repository at this point in the history
  • Loading branch information
tvalentyn authored May 14, 2024
1 parent c793700 commit c1d1bd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdks/python/apache_beam/dataframe/frames_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit c1d1bd6

Please sign in to comment.