diff options
| -rw-r--r-- | AUTHORS | 26 | ||||
| -rw-r--r-- | djangorestframework/tests/mixins.py | 2 |
2 files changed, 15 insertions, 13 deletions
@@ -1,16 +1,18 @@ Tom Christie <tomchristie> - tom@tomchristie.com, @thisneonsoul - Author. -Paul Bagwell <pbgwl> - Suggestions & bugfixes. -Marko Tibold <markotibold> - Contributions & Providing the Jenkins CI Server. -Sébastien Piquemal <sebpiq> - Contributions. -Carmen Wick <cwick> - Bugfixes. -Alex Ehlke <aehlke> - Design Contributions. -Alen Mujezinovic <flashingpumpkin> - Contributions. -Carles Barrobés <txels> - HEAD support. -Michael Fötsch <mfoetsch> - File format support. -David Larlet <david> - OAuth support. -Andrew Straw <astraw> - Bugfixes. -<zeth> - Bugfixes. -<fzunino> - Bugfixes. +Paul Bagwell <pbgwl> +Marko Tibold <markotibold> - Additional thanks for providing & managing the Jenkins CI Server. +Sébastien Piquemal <sebpiq> +Carmen Wick <cwick> +Alex Ehlke <aehlke> +Alen Mujezinovic <flashingpumpkin> +Carles Barrobés <txels> +Michael Fötsch <mfoetsch> +David Larlet <david> +Andrew Straw <astraw> +<zeth> +Fernando Zunino <fzunino> +Jens Alm <ulmus> +Craig Blaszczyk <jakul> THANKS TO: diff --git a/djangorestframework/tests/mixins.py b/djangorestframework/tests/mixins.py index b9aa4c3b..da7c4d86 100644 --- a/djangorestframework/tests/mixins.py +++ b/djangorestframework/tests/mixins.py @@ -107,7 +107,7 @@ class TestModelCreation(TestCase): response = mixin.post(request) self.assertEquals(3, CustomUser.objects.count()) self.assertEquals(2, response.cleaned_content.groups.count()) - self.assertEquals('foo', response.cleaned_content.groups.all()[0].name) + self.assertEquals('foo1', response.cleaned_content.groups.all()[0].name) self.assertEquals('foo2', response.cleaned_content.groups.all()[1].name) |
