summaryrefslogtreecommitdiff
path: root/tests/test_base.py
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2012-08-17 17:02:48 +0200
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2012-11-15 00:01:23 +0100
commitb093cc6a35c884b926e0c2bc5928b330cccd4e03 (patch)
treecb58e88dffa693a505b4b3f54d18f0714350a973 /tests/test_base.py
parent9db320ba65d91ff8c09169b359ded4bfff5196db (diff)
downloadfactory-boy-b093cc6a35c884b926e0c2bc5928b330cccd4e03.tar
factory-boy-b093cc6a35c884b926e0c2bc5928b330cccd4e03.tar.gz
[py3] Remove calls to iteritems().
Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
Diffstat (limited to 'tests/test_base.py')
-rw-r--r--tests/test_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_base.py b/tests/test_base.py
index 7ec3d0e..c8109db 100644
--- a/tests/test_base.py
+++ b/tests/test_base.py
@@ -42,7 +42,7 @@ class FakeDjangoModel(object):
return instance
def __init__(self, **kwargs):
- for name, value in kwargs.iteritems():
+ for name, value in kwargs.items():
setattr(self, name, value)
self.id = None