summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2023-08-25 09:27:21 -0400
committerGitHub <noreply@github.com>2023-08-25 09:27:21 -0400
commita8a46b13360b8bd07cbca48798791098ef6d6d3c (patch)
tree074f5ad409df786f03c6f733ff541792ad9f0b7d /changelog.d
parentAdd warnings about MSC3861 on certain APIs. (#16168) (diff)
downloadsynapse-a8a46b13360b8bd07cbca48798791098ef6d6d3c.tar.xz
Replace simple_async_mock with AsyncMock (#16180)
Python 3.8 has a native AsyncMock, use it instead of a custom
implementation.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/16180.misc1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/16180.misc b/changelog.d/16180.misc
new file mode 100644
index 0000000000..8d04954ab9
--- /dev/null
+++ b/changelog.d/16180.misc
@@ -0,0 +1 @@
+Use `AsyncMock` instead of custom code.