Skip to content

Commit

Permalink
Remove use of deprecated numpy.bool
Browse files Browse the repository at this point in the history
  • Loading branch information
bsteffensmeier committed May 13, 2023
1 parent 999ead6 commit c698120
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/python/test_numpy.py
Expand Up @@ -69,7 +69,7 @@ def testArrayParams(self):
"""
import numpy

za = numpy.zeros((15, 5), numpy.bool)
za = numpy.zeros((15, 5), bool)
za.fill(True)
self.assertTrue(self.test.callBooleanMethod(za))

Expand Down

0 comments on commit c698120

Please sign in to comment.