Wednesday, August 24, 2016

Strange failing test

Hello,

I have a test that fetches some JSON data from my API and compares it with the expected result, which is generated like this:

        expected_json = {
            'status': 'ok',
            'invalid-fields': {},
            'updated-fields': cloned_build.groupings.get(group=group1)
            .field_values
            .exclude(template=approvable_template)
            .values_list('id', flat=True)[:],
        }

At the end, I get this error:

AssertionError: {u'status': u'ok', u'invalid-fields': {}, u'updated-fields': [13, 14, 15]} != {u'status': u'ok', u'invalid-fields': {}, u'updated-fields': [13, 14, 15]}
  {u'invalid-fields': {}, u'status': u'ok', u'updated-fields': [13, 14, 15]}


It seems the two dicts are equal, but assertEquals thinks they are not. Am I missing something here?

Best,
Gergely

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CACczBUJuZX0ShLdU9rx0PyrStqEFOE0HBe%3DezqvzE7HTH9zfWA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment