Skip to content

Commit 9ced684

Browse files
committed
fix unit tests
1 parent e4e5217 commit 9ced684

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testsuite/MDAnalysisTests/coordinates/test_dcd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def _slice_generation_test(self, start, stop, step):
169169
self.u = mda.Universe(PSF, DCD)
170170
ts = self.u.trajectory.timeseries(self.u.atoms)
171171
ts_skip = self.u.trajectory.timeseries(self.u.atoms, start, stop, step)
172-
assert_array_almost_equal(ts[start:stop:step], ts_skip, 5)
172+
assert_array_almost_equal(ts[:,start:stop:step], ts_skip, 5)
173173

174174
# @knownfailure
175175
# def _failed_slices_test(self, start, stop, step):

0 commit comments

Comments
 (0)