@@ -86,7 +86,8 @@ def test_tracked_abstract_base(self):
86
86
for f in TrackedWithAbstractBase .history .model ._meta .fields
87
87
],
88
88
[
89
- 'id' , 'history_id' , 'history_date' , 'history_user_id' ,
89
+ 'id' , 'history_id' , 'history_date' ,
90
+ 'history_change_reason' , 'history_user_id' ,
90
91
'history_type' ,
91
92
],
92
93
)
@@ -99,7 +100,8 @@ def test_tracked_concrete_base(self):
99
100
],
100
101
[
101
102
'id' , 'trackedconcretebase_ptr_id' , 'history_id' ,
102
- 'history_date' , 'history_user_id' , 'history_type' ,
103
+ 'history_date' , 'history_change_reason' , 'history_user_id' ,
104
+ 'history_type' ,
103
105
],
104
106
)
105
107
@@ -114,7 +116,8 @@ def test_tracked_abstract_and_untracked_concrete_base(self):
114
116
[f .attname for f in InheritTracking1 .history .model ._meta .fields ],
115
117
[
116
118
'id' , 'untrackedconcretebase_ptr_id' , 'history_id' ,
117
- 'history_date' , 'history_user_id' , 'history_type' ,
119
+ 'history_date' , 'history_change_reason' ,
120
+ 'history_user_id' , 'history_type' ,
118
121
],
119
122
)
120
123
@@ -123,7 +126,8 @@ def test_indirect_tracked_abstract_base(self):
123
126
[f .attname for f in InheritTracking2 .history .model ._meta .fields ],
124
127
[
125
128
'id' , 'baseinherittracking2_ptr_id' , 'history_id' ,
126
- 'history_date' , 'history_user_id' , 'history_type' ,
129
+ 'history_date' , 'history_change_reason' ,
130
+ 'history_user_id' , 'history_type' ,
127
131
],
128
132
)
129
133
@@ -132,7 +136,8 @@ def test_indirect_tracked_concrete_base(self):
132
136
[f .attname for f in InheritTracking3 .history .model ._meta .fields ],
133
137
[
134
138
'id' , 'baseinherittracking3_ptr_id' , 'history_id' ,
135
- 'history_date' , 'history_user_id' , 'history_type' ,
139
+ 'history_date' , 'history_change_reason' ,
140
+ 'history_user_id' , 'history_type' ,
136
141
],
137
142
)
138
143
0 commit comments