Skip to content

Commit a087e62

Browse files
Apply suggestions from code review
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 2ed240b commit a087e62

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/stopping_criterion.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ end
4343
s1 = StopAfterIteration(2) & StopAfter(Second(1))
4444
@test s1 isa StoppingCriterion
4545
@test sprint((io, x) -> show(io, MIME"text/plain"(), x), s1) ==
46-
"StopWhenAll with the Stopping Criteria:\n StopAfterIteration(2)\n StopAfter(Second(1))"
46+
"StopWhenAll with the Stopping Criteria:\n StopAfterIteration(2)\n StopAfter(Second(1))"
4747

4848
algorithm = DummyAlgorithm(s1)
4949
s1_state = initialize_state(problem, algorithm, s1)
@@ -59,7 +59,7 @@ end
5959
s1 = StopAfterIteration(2) | StopAfter(Second(1))
6060
@test s1 isa StoppingCriterion
6161
@test sprint((io, x) -> show(io, MIME"text/plain"(), x), s1) ==
62-
"StopWhenAny with the Stopping Criteria:\n StopAfterIteration(2)\n StopAfter(Second(1))"
62+
"StopWhenAny with the Stopping Criteria:\n StopAfterIteration(2)\n StopAfter(Second(1))"
6363

6464
algorithm = DummyAlgorithm(s1)
6565
s1_state = initialize_state(problem, algorithm, s1)

0 commit comments

Comments
 (0)