Fix passing force_insert parameter to Model.save()
Review Request #14839 — Created Feb. 19, 2026 and updated — Latest diff uploaded
The BaseComment tests had a test case that was passing the
force_insertparameter to the model'ssave()method as a positional
argument, with a value ofNone. Django has changed this to deprecated
positional arguments entirely for this method, and also now raise a
TypeErrorif it's not passed as a bool. This change updates our test
to pass it as a kwarg with a value ofFalse.
Ran unit tests.