Skip to content

Commit 0017a12

Browse files
committed
Fix bijector_test under Python 3.9.
1 parent f09ba10 commit 0017a12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorflow_probability/python/bijectors/bijector_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class BaseBijectorTest(test_util.TestCase):
4545
def testIsAbstract(self):
4646
with self.assertRaisesRegexp(TypeError,
4747
('Can\'t instantiate abstract class Bijector '
48-
'with abstract methods __init__')):
48+
'with abstract methods? __init__')):
4949
tfb.Bijector() # pylint: disable=abstract-class-instantiated
5050

5151
def testDefaults(self):

0 commit comments

Comments
 (0)