mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
bpo-38521: Fix error in NormalDist.__eq__() (GH-16840)
This commit is contained in:
parent
ecb035cd14
commit
5eabec022b
3 changed files with 6 additions and 1 deletions
|
@ -2651,9 +2651,13 @@ class TestNormalDist:
|
|||
nd2 = NormalDist(2, 4)
|
||||
nd3 = NormalDist()
|
||||
nd4 = NormalDist(2, 4)
|
||||
nd5 = NormalDist(2, 8)
|
||||
nd6 = NormalDist(8, 4)
|
||||
self.assertNotEqual(nd1, nd2)
|
||||
self.assertEqual(nd1, nd3)
|
||||
self.assertEqual(nd2, nd4)
|
||||
self.assertNotEqual(nd2, nd5)
|
||||
self.assertNotEqual(nd2, nd6)
|
||||
|
||||
# Test NotImplemented when types are different
|
||||
class A:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue