1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #25215 -- Solved reference to forms.HStoreField in declaration of HStoreField

Correct test which was using the model field in a test form.
This commit is contained in:
Curtis Maloney
2015-08-04 10:47:58 +10:00
committed by Markus Holtermann
parent 770449e24b
commit 9f73009e98
3 changed files with 15 additions and 3 deletions

View File

@@ -21,3 +21,6 @@ Bugfixes
* Prevented an exception in ``TestCase.setUpTestData()`` from leaking the
transaction (:ticket:`25176`).
* Fixed ``has_changed()`` method in
:class:`django.contrib.postgres.forms.HStoreField`.