Skip to content

Commit

Permalink
troubleshoot 32bit build
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrockmendel committed Nov 27, 2023
1 parent a844d64 commit cebf6ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/tests/io/sas/test_sas7bdat.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def test_max_sas_date(datapath):

if not IS64:
# No good reason for this, just what we get on the CI
pass # expected.loc[:, "dt_as_dt"] -= np.timedelta64(1, "ms")
expected.loc[:, "dt_as_dt"] -= np.timedelta64(1, "ms")

tm.assert_frame_equal(df, expected)

Expand Down Expand Up @@ -340,7 +340,7 @@ def test_max_sas_date_iterator(datapath):
columns=col_order,
),
]
if False: # not IS64:
if not IS64:
# No good reason for this, just what we get on the CI
expected[0].loc[0, "dt_as_dt"] -= np.timedelta64(1, "ms")

Expand Down

0 comments on commit cebf6ca

Please sign in to comment.