summaryrefslogtreecommitdiffstats
path: root/php-Faker-github-pull-request-1365.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2019-06-19 13:35:38 +0200
committerRemi Collet <remi@remirepo.net>2019-06-19 13:35:38 +0200
commite6841d2e76bc421da053ba8ac23eb942e1b433bf (patch)
tree9f4d07749ae6936c3756f035d980dd0e1bf6800e /php-Faker-github-pull-request-1365.patch
parentbd36240dc2ce28744f27bf078a122001a1e260a9 (diff)
v1.8.0 from Fedora
Diffstat (limited to 'php-Faker-github-pull-request-1365.patch')
-rw-r--r--php-Faker-github-pull-request-1365.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/php-Faker-github-pull-request-1365.patch b/php-Faker-github-pull-request-1365.patch
deleted file mode 100644
index cd1f506..0000000
--- a/php-Faker-github-pull-request-1365.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From ce3a0239c47289c8c371a67a8d7acf90ef6be7c4 Mon Sep 17 00:00:00 2001
-From: Remi Collet <remi@remirepo.net>
-Date: Wed, 29 Nov 2017 14:02:19 +0100
-Subject: [PATCH] skip test failing on bigendian
-
----
- test/Faker/Provider/UuidTest.php | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/test/Faker/Provider/UuidTest.php b/test/Faker/Provider/UuidTest.php
-index ebd4ae4c6..5c639cacc 100644
---- a/test/Faker/Provider/UuidTest.php
-+++ b/test/Faker/Provider/UuidTest.php
-@@ -16,6 +16,9 @@ public function testUuidReturnsUuid()
-
- public function testUuidExpectedSeed()
- {
-+ if (pack('L', 0x6162797A) == pack('N', 0x6162797A)) {
-+ $this->markTestSkipped('Big Endian');
-+ }
- $faker = new Generator();
- $faker->seed(123);
- $this->assertEquals("8e2e0c84-50dd-367c-9e66-f3ab455c78d6", BaseProvider::uuid());