From 1f19c13ac963f1666e4a35ed6e557a58b3fadf4e Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Tue, 1 Mar 2016 12:15:40 -0500 Subject: [PATCH] Fix up a Notification unit test issue after the merge --- awx/api/serializers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/api/serializers.py b/awx/api/serializers.py index 327d9d1048..7847e1e86c 100644 --- a/awx/api/serializers.py +++ b/awx/api/serializers.py @@ -2067,7 +2067,7 @@ class NotifierSerializer(BaseSerializer): "bool": (bool,), "list": (list,), "password": (str, unicode), - "object": (dict,)} + "object": (dict, OrderedDict)} def to_representation(self, obj): ret = super(NotifierSerializer, self).to_representation(obj)