summaryrefslogtreecommitdiff
path: root/debian/patches/disable-a-test-in-test_existing_file.patch
diff options
context:
space:
mode:
authorOndřej Nový <novy@ondrej.org>2016-02-14 19:56:59 +0100
committerOndřej Nový <novy@ondrej.org>2016-02-14 19:56:59 +0100
commit36ef8928c06a4bba5249442cd832a73ece1570c3 (patch)
treeae902d5c84bc503bea7b04d66eadbc86fe730b0e /debian/patches/disable-a-test-in-test_existing_file.patch
parenta85231280accdfec8ef9cf67213ff706eb242889 (diff)
downloadfactory-boy-36ef8928c06a4bba5249442cd832a73ece1570c3.tar
factory-boy-36ef8928c06a4bba5249442cd832a73ece1570c3.tar.gz
* New upstream release.
* Added python(3)-wheel build dependency. * Fixed VCS url (https). * Removed disable-a-test-in-test_existing_file.patch * Removed add-django-1.7-compat-with-new-django.setup.patch * Rebased and fixed debian/patches/removed-privacy-breach.patch * d/copyright fixed.
Diffstat (limited to 'debian/patches/disable-a-test-in-test_existing_file.patch')
-rw-r--r--debian/patches/disable-a-test-in-test_existing_file.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/debian/patches/disable-a-test-in-test_existing_file.patch b/debian/patches/disable-a-test-in-test_existing_file.patch
deleted file mode 100644
index 3ba987f..0000000
--- a/debian/patches/disable-a-test-in-test_existing_file.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Description: Disable now broken test
-Author: Thomas Goirand <zigo@debian.org>
-Bug-Debian: https://bugs.debian.org/759914
-Forwarded: no
-Last-Update: 2014-08-31
-
---- factory-boy-2.4.1.orig/tests/test_django.py
-+++ factory-boy-2.4.1/tests/test_django.py
-@@ -430,7 +430,7 @@ class DjangoFileFieldTestCase(unittest.T
- o2 = WithFileFactory.build(afile=o1.afile)
- self.assertIsNone(o2.pk)
- self.assertEqual(b'example_data\n', o2.afile.read())
-- self.assertEqual('django/example_1.data', o2.afile.name)
-+# self.assertEqual('django/example_1.data', o2.afile.name)
-
- def test_no_file(self):
- o = WithFileFactory.build(afile=None)