Allow timestamp to be set for comment models in test cases
Review Request #12394 — Created June 21, 2022 and submitted — Latest diff uploaded
The create methods for comments in
reviewboard.testing.TestCase
does not
properly set the timestamp when atimestamp
argument is passed. This is
because the timestamp is being overriden when when the comment object is saved.
This change allowsreviewboard.testing.TestCase
to properly set the timestamp
when atimestamp
argument is passed.
Ran all unit tests in
reviewboard.webapi.tests
, which make use of the create
comment methods.