Skip to content

Commit

Permalink
List removals in changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Håkon Wiik Ånes <hwaanes@gmail.com>
  • Loading branch information
hakonanes committed Feb 11, 2023
1 parent fe91f3e commit f1b2317
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -27,6 +27,8 @@ Deprecated

Removed
-------
- Removed ``generators`` and ``projections`` modules which were deprecated in version
0.8. (`#612 <https://github.com/pyxem/kikuchipy/pull/612>`_)

Fixed
-----
Expand Down
5 changes: 1 addition & 4 deletions kikuchipy/indexing/tests/test_merge_crystal_maps.py
Expand Up @@ -173,10 +173,7 @@ def test_merge_crystal_maps_2d(
for v1, v2 in zip(
merged_xmap._coordinates.values(), xmaps[0]._coordinates.values()
):
if v1 is None:
assert v1 is v2
else:
np.allclose(v1, v2)
assert np.allclose(v1, v2)

assert np.allclose(merged_xmap.phase_id, desired_phase_ids)
assert np.allclose(merged_xmap.prop[scores_prop], desired_scores)
Expand Down

0 comments on commit f1b2317

Please sign in to comment.