diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2012-08-17 17:02:48 +0200 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2012-11-15 00:01:23 +0100 |
commit | b093cc6a35c884b926e0c2bc5928b330cccd4e03 (patch) | |
tree | cb58e88dffa693a505b4b3f54d18f0714350a973 /tests/test_base.py | |
parent | 9db320ba65d91ff8c09169b359ded4bfff5196db (diff) | |
download | factory-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.py | 2 |
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 |