summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJelle Zijlstra <jelle.zijlstra@gmail.com>2022-04-24 22:02:57 (GMT)
committerGitHub <noreply@github.com>2022-04-24 22:02:57 (GMT)
commite93d2fbddaee329b2e8f405cbb5aec44ca221de6 (patch)
treeb708d272b7cdabbc11af3ac241c86b94427e65ed /Misc
parentdd3cf124a033a2e3bb975be53db40213457afd51 (diff)
downloadcpython-e93d2fbddaee329b2e8f405cbb5aec44ca221de6.zip
cpython-e93d2fbddaee329b2e8f405cbb5aec44ca221de6.tar.gz
cpython-e93d2fbddaee329b2e8f405cbb5aec44ca221de6.tar.bz2
gh-91821: Make decimal test succeed consistently (#91825)
The test relies on precision being set to 9, but some ways of invoking this test leave it set to 28 instead. I don't know exactly how it happens, but setting the precision directly should make the behavior consistent.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-04-22-08-25-18.gh-issue-91821.XwMkj0.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-04-22-08-25-18.gh-issue-91821.XwMkj0.rst b/Misc/NEWS.d/next/Library/2022-04-22-08-25-18.gh-issue-91821.XwMkj0.rst
new file mode 100644
index 0000000..9d7f9d4
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-04-22-08-25-18.gh-issue-91821.XwMkj0.rst
@@ -0,0 +1 @@
+Fix unstable ``test_from_tuple`` test in ``test_decimal.py``.