Skip to content

Commit

Permalink
Fix Python 3.12 deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrodmillman committed Sep 11, 2023
1 parent dd6330e commit 4a409d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pywt/tests/test_wavelet.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ def test_custom_wavelet():
filter_bank=filter_bank)

# check expected default wavelet properties
assert_(~haar_custom2.orthogonal)
assert_(~haar_custom2.biorthogonal)
assert_(not haar_custom2.orthogonal)
assert_(not haar_custom2.biorthogonal)
assert_(haar_custom2.symmetry == 'unknown')
assert_(haar_custom2.family_name == '')
assert_(haar_custom2.short_family_name == '')
Expand Down

0 comments on commit 4a409d0

Please sign in to comment.