Make sure that calls to make_tempfile() use keyword arguments.
Review Request #13701 — Created April 5, 2024 and submitted — Latest diff uploaded
I recently used
rbt patch
and saw that it was broken. The problem was that
it didn't pass keyword arguments withmake_tempfile()
, which has
keyword-only arguments. I audited the rest of the code to see if we had this
problem anywhere else, but this was the only spot.
- Ran unit tests.
- Used
rbt patch
and saw that it works now.