summaryrefslogtreecommitdiff
path: root/community/python-faker/remove-century-tests.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/python-faker/remove-century-tests.patch')
-rw-r--r--community/python-faker/remove-century-tests.patch16
1 files changed, 12 insertions, 4 deletions
diff --git a/community/python-faker/remove-century-tests.patch b/community/python-faker/remove-century-tests.patch
index 99418a42..57cddebf 100644
--- a/community/python-faker/remove-century-tests.patch
+++ b/community/python-faker/remove-century-tests.patch
@@ -1,6 +1,6 @@
---- a/tests/providers/test_date_time.py 2017-08-30 14:27:30.361571816 +0200
-+++ b/tests/providers/test_date_time.py 2017-08-30 14:28:01.231669046 +0200
-@@ -162,9 +162,6 @@
+--- faker-0.8.4/tests/providers/test_date_time.py 2017-09-22 21:52:06.000000000 +0200
++++ test_date_time.py 2017-09-25 11:14:26.013321696 +0200
+@@ -203,9 +203,6 @@
return int(time.mktime(value.timetuple()))
def test_date_time_this_period(self):
@@ -10,7 +10,7 @@
# test decade
self.assertTrue(self._datetime_to_time(self.factory.date_time_this_decade(after_now=False)) <= self._datetime_to_time(datetime.now()))
self.assertTrue(self._datetime_to_time(self.factory.date_time_this_decade(before_now=False, after_now=True)) >= self._datetime_to_time(datetime.now()))
-@@ -190,17 +187,12 @@
+@@ -231,17 +228,12 @@
def test_date_time_this_period_with_tzinfo(self):
# ensure all methods provide timezone aware datetimes
with self.assertRaises(TypeError):
@@ -28,3 +28,11 @@
# test decade
self.assertTrue(self.factory.date_time_this_decade(after_now=False, tzinfo=utc) <= datetime.now(utc))
self.assertTrue(self.factory.date_time_this_decade(before_now=False, after_now=True, tzinfo=utc) >= datetime.now(utc))
+@@ -268,7 +260,6 @@
+ def test_date_this_period(self):
+ # test century
+ self.assertTrue(self.factory.date_this_century(after_today=False) <= date.today())
+- self.assertTrue(self.factory.date_this_century(before_today=False, after_today=True) >= date.today())
+ # test decade
+ self.assertTrue(self.factory.date_this_decade(after_today=False) <= date.today())
+ self.assertTrue(self.factory.date_this_decade(before_today=False, after_today=True) >= date.today())