paulocheque / django-dynamic-fixture

A complete library to create dynamic model instances for testing purposes.
http://django-dynamic-fixture.readthedocs.io/
Other
391 stars 67 forks source link

Fix using look_up_alias() with multiple parameters #38

Closed ckrybus closed 4 years ago

ckrybus commented 10 years ago

The call G(Model, fieldattr1='A', fieldattr2='B') didn't work as expected - only the attr2 value was set, attr1 value was ignored.

ckrybus commented 10 years ago

I'm pretty sure this fixes #28

paulocheque commented 4 years ago

@ckrybus Finally it is fixed: https://github.com/paulocheque/django-dynamic-fixture/pull/106

I believe your PR fixes for the root variables but not for the deeper ones.