We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a19aac1 commit 60edbf9Copy full SHA for 60edbf9
astroquery/utils/tests/test_utils.py
@@ -45,7 +45,9 @@ def test_class_or_instance():
45
assert SimpleQueryClass.query() == "class"
46
U = SimpleQueryClass()
47
assert U.query() == "instance"
48
- assert SimpleQueryClass.query.__doc__ == " docstring "
+ # Indent changes in Python 3.13 thus cannot equate
49
+ # See https://github.com/python/cpython/issues/81283
50
+ assert "docstring" in SimpleQueryClass.query.__doc__
51
52
53
@pytest.mark.parametrize(('coordinates'),
0 commit comments