Skip to content

Commit 85e4b1b

Browse files
committed
test(common): Update deprecation tests for FutureWarning
1 parent 2c1348b commit 85e4b1b

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
@@ -596,7 +596,7 @@ def test_version_deprecation_warning(
596596

597597
if expected_warning:
598598
assert len(w) == 1
599-
assert issubclass(w[0].category, DeprecationWarning)
599+
assert issubclass(w[0].category, FutureWarning)
600600
assert version in str(w[0].message)
601601
assert "3.2a" in str(w[0].message)
602602
else:

0 commit comments

Comments
 (0)