@@ -636,9 +636,9 @@ def test_copy(self):
636636
637637 @pytest .mark .parametrize (
638638 "arithmatic_offset_type, expected" ,
639- zip (
640- _ARITHMETIC_DATE_OFFSET ,
641- [
639+ zip (
640+ _ARITHMETIC_DATE_OFFSET ,
641+ [
642642 "2009-01-02" ,
643643 "2008-02-02" ,
644644 "2008-01-09" ,
@@ -649,6 +649,7 @@ def test_copy(self):
649649 "2008-01-02 00:00:00.001000000" ,
650650 "2008-01-02 00:00:00.000001000" ,
651651 ],
652+ strict = True ,
652653 ),
653654 )
654655 def test_add (self , arithmatic_offset_type , expected , dt ):
@@ -657,9 +658,9 @@ def test_add(self, arithmatic_offset_type, expected, dt):
657658
658659 @pytest .mark .parametrize (
659660 "arithmatic_offset_type, expected" ,
660- zip (
661- _ARITHMETIC_DATE_OFFSET ,
662- [
661+ zip (
662+ _ARITHMETIC_DATE_OFFSET ,
663+ [
663664 "2007-01-02" ,
664665 "2007-12-02" ,
665666 "2007-12-26" ,
@@ -670,6 +671,7 @@ def test_add(self, arithmatic_offset_type, expected, dt):
670671 "2008-01-01 23:59:59.999000000" ,
671672 "2008-01-01 23:59:59.999999000" ,
672673 ],
674+ strict = True ,
673675 ),
674676 )
675677 def test_sub (self , arithmatic_offset_type , expected , dt ):
@@ -693,6 +695,7 @@ def test_sub(self, arithmatic_offset_type, expected, dt):
693695 "2008-01-02 00:00:00.008000000" ,
694696 "2008-01-02 00:00:00.000009000" ,
695697 ],
698+ strict = True ,
696699 ),
697700 )
698701 def test_mul_add (self , arithmatic_offset_type , n , expected , dt ):
@@ -717,6 +720,7 @@ def test_mul_add(self, arithmatic_offset_type, n, expected, dt):
717720 "2008-01-01 23:59:59.992000000" ,
718721 "2008-01-01 23:59:59.999991000" ,
719722 ],
723+ strict = True ,
720724 ),
721725 )
722726 def test_mul_sub (self , arithmatic_offset_type , n , expected , dt ):
0 commit comments