guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: python-django: Add patch file.


From: Andreas Enge
Subject: 01/01: gnu: python-django: Add patch file.
Date: Mon, 12 Sep 2016 15:28:11 +0000 (UTC)

andreas pushed a commit to branch master
in repository guix.

commit 378920defcb263890abc3ff66e088cea425d1433
Author: Andreas Enge <address@hidden>
Date:   Mon Sep 12 17:26:43 2016 +0200

    gnu: python-django: Add patch file.
    
    * gnu/packages/patches/python-django-fix-testcase.patch: New file.
    
    This is a follow-up to commit d18197af7844151e38322605b11e0c75b18b55bf.
---
 .../patches/python-django-fix-testcase.patch       |   42 ++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/gnu/packages/patches/python-django-fix-testcase.patch 
b/gnu/packages/patches/python-django-fix-testcase.patch
new file mode 100644
index 0000000..4c1f980
--- /dev/null
+++ b/gnu/packages/patches/python-django-fix-testcase.patch
@@ -0,0 +1,42 @@
+From 24123c31362b5f3783d84d133c160e9fe16805fe Mon Sep 17 00:00:00 2001
+From: Tim Graham <address@hidden>
+Date: Mon, 1 Aug 2016 15:40:46 -0400
+Subject: [PATCH] Fixed admin_utils test failures due to translation updates.
+
+https://github.com/django/django/commit/24123c31362b5f3783d84d133c160e9fe16805fe
+
+---
+ tests/admin_utils/test_logentry.py | 7 ++++---
+ 1 file changed, 4 insertions(+), 3 deletions(-)
+
+diff --git a/tests/admin_utils/test_logentry.py 
b/tests/admin_utils/test_logentry.py
+index 7798373..8259bf0 100644
+--- a/tests/admin_utils/test_logentry.py
++++ b/tests/admin_utils/test_logentry.py
+@@ -59,7 +59,7 @@ class LogEntryTests(TestCase):
+         logentry = 
LogEntry.objects.filter(content_type__model__iexact='article').latest('id')
+         self.assertEqual(logentry.get_change_message(), 'Changed title and 
hist.')
+         with translation.override('fr'):
+-            self.assertEqual(logentry.get_change_message(), 'Modification de 
title et hist.')
++            self.assertEqual(logentry.get_change_message(), 'Title et hist 
modifié(s).')
+ 
+         add_url = reverse('admin:admin_utils_article_add')
+         post_data['title'] = 'New'
+@@ -117,11 +117,12 @@ class LogEntryTests(TestCase):
+             'Changed domain. Added article "Article object". '
+             'Changed title for article "Article object". Deleted article 
"Article object".'
+         )
++
+         with translation.override('fr'):
+             self.assertEqual(
+                 logentry.get_change_message(),
+-                'Modification de domain. Article « Article object » ajouté. '
+-                'Modification de title pour l\'objet article « Article object 
». Article « Article object » supprimé.'
++                "Domain modifié(s). Article « Article object » ajouté. "
++                "Title modifié(s) pour l'objet article « Article object ». 
Article « Article object » supprimé."
+             )
+ 
+     def test_logentry_get_edited_object(self):
+-- 
+2.7.4
+



reply via email to

[Prev in Thread] Current Thread [Next in Thread]