summaryrefslogtreecommitdiffstats
path: root/php-Faker-github-pull-request-1348.patch
diff options
context:
space:
mode:
Diffstat (limited to 'php-Faker-github-pull-request-1348.patch')
-rw-r--r--php-Faker-github-pull-request-1348.patch45
1 files changed, 0 insertions, 45 deletions
diff --git a/php-Faker-github-pull-request-1348.patch b/php-Faker-github-pull-request-1348.patch
deleted file mode 100644
index 635da1b..0000000
--- a/php-Faker-github-pull-request-1348.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-From cd1d5dd8a603eab9e02e331b61aa60e6cf6f8c78 Mon Sep 17 00:00:00 2001
-From: Remi Collet <remi@remirepo.net>
-Date: Fri, 10 Nov 2017 11:48:37 +0100
-Subject: [PATCH] only test available date range on 32-bit
-
----
- test/Faker/Provider/fi_FI/PersonTest.php | 19 +++++++++++++------
- 1 file changed, 13 insertions(+), 6 deletions(-)
-
-diff --git a/test/Faker/Provider/fi_FI/PersonTest.php b/test/Faker/Provider/fi_FI/PersonTest.php
-index 5aefb8584..b979666e9 100644
---- a/test/Faker/Provider/fi_FI/PersonTest.php
-+++ b/test/Faker/Provider/fi_FI/PersonTest.php
-@@ -44,18 +44,25 @@ public function testPersonalIdentityNumberUsesBirthDateIfProvided($seed, $birthd
-
- public function testPersonalIdentityNumberGeneratesCompliantNumbers()
- {
-- for ($i = 0; $i < 10; $i++) {
-- $birthdate = $this->faker->dateTimeBetween('1800-01-01 00:00:00', '1899-12-31 23:59:59');
-- $pin = $this->faker->personalIdentityNumber($birthdate);
-- $this->assertRegExp('/^[0-9]{6}\+[0-9]{3}[0-9ABCDEFHJKLMNPRSTUVWXY]$/', $pin);
-+ if (strtotime('1800-01-01 00:00:00')) {
-+ $min="1900";
-+ $max="2099";
-+ for ($i = 0; $i < 10; $i++) {
-+ $birthdate = $this->faker->dateTimeBetween('1800-01-01 00:00:00', '1899-12-31 23:59:59');
-+ $pin = $this->faker->personalIdentityNumber($birthdate, NULL, true);
-+ $this->assertRegExp('/^[0-9]{6}\+[0-9]{3}[0-9ABCDEFHJKLMNPRSTUVWXY]$/', $pin);
-+ }
-+ } else { // timestamp limit for 32-bit computer
-+ $min="1902";
-+ $max="2037";
- }
- for ($i = 0; $i < 10; $i++) {
-- $birthdate = $this->faker->dateTimeBetween('1900-01-01 00:00:00', '1999-12-31 23:59:59');
-+ $birthdate = $this->faker->dateTimeBetween("$min-01-01 00:00:00", '1999-12-31 23:59:59');
- $pin = $this->faker->personalIdentityNumber($birthdate);
- $this->assertRegExp('/^[0-9]{6}-[0-9]{3}[0-9ABCDEFHJKLMNPRSTUVWXY]$/', $pin);
- }
- for ($i = 0; $i < 10; $i++) {
-- $birthdate = $this->faker->dateTimeBetween('2000-01-01 00:00:00', '2099-12-31 23:59:59');
-+ $birthdate = $this->faker->dateTimeBetween('2000-01-01 00:00:00', "$max-12-31 23:59:59");
- $pin = $this->faker->personalIdentityNumber($birthdate);
- $this->assertRegExp('/^[0-9]{6}A[0-9]{3}[0-9ABCDEFHJKLMNPRSTUVWXY]$/', $pin);
- }