Fixed merge conflicts.

This commit is contained in:
Brandon Taylor
2014-12-22 10:27:46 -05:00
25 changed files with 40 additions and 882 deletions
+5
View File
@@ -181,5 +181,10 @@ class SortableNonInlineCategory(SimpleModel, Sortable):
verbose_name = 'Sortable Non-Inline Category'
verbose_name_plural = 'Sortable Non-Inline Categories'
<<<<<<< HEAD
=======
non_sortable_category = SortableForeignKey(NonSortableCategory)
>>>>>>> e83e31cb22c681d4ddd954e993a9c2a129486ad4
def __str__(self):
return self.title
+9 -3
View File
@@ -1,4 +1,8 @@
import httplib
try:
import httplib
except ImportError:
import http.client as httplib
import json
from django.contrib.auth.models import User
@@ -118,7 +122,8 @@ class SortableTestCase(TestCase):
#make a normal POST
response = self.client.post(self.get_sorting_url(),
data=self.get_category_indexes(category1, category2, category3))
content = json.loads(response.content)
content = json.loads(response.content.decode(encoding='UTF-8'),
'latin-1')
self.assertFalse(content.get('objects_sorted'),
'Objects should not have been sorted. An ajax post is required.')
@@ -134,7 +139,8 @@ class SortableTestCase(TestCase):
response = self.client.post(self.get_sorting_url(),
data=self.get_category_indexes(category3, category2, category1),
HTTP_X_REQUESTED_WITH='XMLHttpRequest')
content = json.loads(response.content)
content = json.loads(response.content.decode(encoding='UTF-8'),
'latin-1')
self.assertTrue(content.get('objects_sorted'),
'Objects should have been sorted.')