diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3cd0c43b1..3b3840620 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -54,9 +54,6 @@ Bug Fixes - `#3695 `_: Fix ``ApproxNumpy`` initialisation argument mixup, ``abs`` and ``rel`` tolerances were flipped causing strange comparsion results. Add tests to check ``abs`` and ``rel`` tolerances for ``np.array`` and test for expecting ``nan`` with ``np.array()`` -- `#3712 `_: Correctly represent the dimensions of an numpy array when calling ``repr()`` on ``approx()``. - -- `#3473 `_: Raise immediately if ``approx()`` is given an expected value of a type it doesn't understand (e.g. strings, nested dicts, etc.) - `#980 `_: Fix truncated locals output in verbose mode. diff --git a/changelog/3473.bugfix.rst b/changelog/3473.bugfix.rst new file mode 100644 index 000000000..ef434b29f --- /dev/null +++ b/changelog/3473.bugfix.rst @@ -0,0 +1 @@ +Raise immediately if ``approx()`` is given an expected value of a type it doesn't understand (e.g. strings, nested dicts, etc.). diff --git a/changelog/3712.bugfix.rst b/changelog/3712.bugfix.rst new file mode 100644 index 000000000..649ef6394 --- /dev/null +++ b/changelog/3712.bugfix.rst @@ -0,0 +1 @@ +Correctly represent the dimensions of an numpy array when calling ``repr()`` on ``approx()``.