Skip to content

Commit 1079387

Browse files
committed
Fixing coverage
1 parent 8c3d828 commit 1079387

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/paper/paper.bib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ @article{mortensen_joss
1818
volume = {3},
1919
number = {31},
2020
pages = {1071},
21-
doi = {https://doi.org/10.21105/joss.01071}
21+
doi = {10.21105/joss.01071}
2222
}
2323

2424
@inproceedings{mortensen17,

tests/test_darray.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ def test_2Darray():
4141
a[:] = MPI.COMM_WORLD.Get_rank()
4242
b = a.redistribute(newaxis)
4343
a = b.redistribute(out=a)
44+
a = b.redistribute(a.alignment, out=a)
4445
s0 = MPI.COMM_WORLD.reduce(np.linalg.norm(a)**2)
4546
s1 = MPI.COMM_WORLD.reduce(np.linalg.norm(b)**2)
4647
if MPI.COMM_WORLD.Get_rank() == 0:

0 commit comments

Comments
 (0)