Skip to content

Commit 1e4c374

Browse files
Updated doctest to be more robust. Change suggested by tscrim.
Co-authored-by: Travis Scrimshaw <[email protected]>
1 parent 94fc518 commit 1e4c374

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/matrix/matrix_integer_dense.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5429,9 +5429,9 @@ cdef class Matrix_integer_dense(Matrix_dense):
54295429
Ensure that :issue:`11328` is fixed::
54305430
54315431
sage: m = matrix([[int(1),int(1)],[int(1),int(1)]])
5432-
sage: m.insert_row(1,[int(1),int(1)])
5433-
[1 1]
5432+
sage: m.insert_row(1,[int(2),int(3)])
54345433
[1 1]
5434+
[2 3]
54355435
[1 1]
54365436
"""
54375437
cdef Matrix_integer_dense res = self._new(self._nrows + 1, self._ncols)

0 commit comments

Comments
 (0)