Skip to content

Commit

Permalink
don't rely on dict sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Balogh committed Oct 20, 2010
1 parent afaafe8 commit 579fd8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/devhub/tests/test_views.py
Expand Up @@ -856,7 +856,7 @@ def test_add_appversion(self):
r = self.client.post(self.url, d)
eq_(r.status_code, 302)
apps = self.get_version().compatible_apps.keys()
eq_(apps, [amo.FIREFOX, amo.THUNDERBIRD])
eq_(sorted(apps), sorted([amo.FIREFOX, amo.THUNDERBIRD]))

def test_update_appversion(self):
av = self.version.apps.get()
Expand Down

0 comments on commit 579fd8f

Please sign in to comment.