def test_set_diag_min():
    matrix = np.zeros(shape=(10, 10))
    print matrix
    hw3.set_diag_min(matrix, 5)
    print matrix