Skip to content

Commit b65d551

Browse files
committed
Remove brackets from assert
1 parent 5cbfec6 commit b65d551

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/tseries/holiday/test_calendar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,4 @@ class testCalendar(AbstractHolidayCalendar):
9999
workDay = offsets.CustomBusinessDay(calendar=cal)
100100
Sat_before_Labor_Day_2031 = to_datetime('2031-08-30')
101101
next_working_day = Sat_before_Labor_Day_2031 + 0 * workDay
102-
assert(next_working_day == to_datetime('2031-09-02'))
102+
assert next_working_day == to_datetime('2031-09-02')

0 commit comments

Comments
 (0)