Skip to content

Commit d3cf695

Browse files
committed
replace assertEquals with assertEqual.
1 parent 02c09df commit d3cf695

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_dates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def testDate(self):
8888
ae(str(Date('1800-07-15')), '1800-07-15.00:00:00')
8989

9090
def testLeapYear(self):
91-
self.assertEquals(str(Date('2008-02-29')), '2008-02-29.00:00:00')
91+
self.assertEqual(str(Date('2008-02-29')), '2008-02-29.00:00:00')
9292

9393
def testDateError(self):
9494
self.assertRaises(ValueError, Date, "12")

0 commit comments

Comments
 (0)