Skip to content

Commit f13d058

Browse files
committed
test(common): Update deprecation tests for FutureWarning
1 parent 64078c5 commit f13d058

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ def test_version_deprecation_warning(
585585

586586
if expected_warning:
587587
assert len(w) == 1
588-
assert issubclass(w[0].category, DeprecationWarning)
588+
assert issubclass(w[0].category, FutureWarning)
589589
assert version in str(w[0].message)
590590
assert "3.2a" in str(w[0].message)
591591
else:

0 commit comments

Comments
 (0)