Skip to content

Commit 70ce297

Browse files
author
Hernán Morales Durand
committed
Fix a failing test, thanks to @StevenCostiou
1 parent a1a1ff4 commit 70ce297

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Sindarin-Tests/SindarinDebuggerTest.class.st

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1787,11 +1787,13 @@ SindarinDebuggerTest >> testStepOver [
17871787

17881788
{ #category : #tests }
17891789
SindarinDebuggerTest >> testStepOverFinishedExecution [
1790+
"This test tries to show is that using Sindarin on a block, it should raise an exception if you continue stepping over that code in your Sindarin script while the execution of that code is already finished (nothing more to step)"
1791+
17901792
|scdbg|
17911793
scdbg := SindarinDebugger debug: [ self methodWithImplicitReturn ].
17921794

17931795
"Stepping until the implicit return of #methodWithImplicitReturn"
1794-
scdbg stepOver: 3.
1796+
scdbg stepOver: 2.
17951797
self should: [scdbg stepOver] raise: DebuggedExecutionIsFinished
17961798
]
17971799

0 commit comments

Comments
 (0)