Skip to content

Commit

Permalink
Fix bijector_test under Python 3.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
jburnim committed Sep 14, 2021
1 parent f09ba10 commit 0017a12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow_probability/python/bijectors/bijector_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class BaseBijectorTest(test_util.TestCase):
def testIsAbstract(self):
with self.assertRaisesRegexp(TypeError,
('Can\'t instantiate abstract class Bijector '
'with abstract methods __init__')):
'with abstract methods? __init__')):
tfb.Bijector() # pylint: disable=abstract-class-instantiated

def testDefaults(self):
Expand Down

0 comments on commit 0017a12

Please sign in to comment.