@@ -330,7 +330,7 @@ StDebuggerTest >> testContextChangedAfterStepOverAndReturn [
330330{ #category : ' tests - context inspector' }
331331StDebuggerTest >> testContextTempVarList [
332332 | contextItems inspectorTable |
333-
333+
334334 dbg := self debuggerOn: session.
335335 inspectorTable := dbg inspector getRawInspectorPresenterOrNil attributeTable.
336336
@@ -342,10 +342,10 @@ StDebuggerTest >> testContextTempVarList [
342342 self assert: (contextItems at: 1 ) class equals: StInspectorSelfNode .
343343
344344 " Next nodes are temps"
345- self assert: (contextItems at: 2 ) tempVariable isTempVariable.
346- self assert: (contextItems at: 3 ) tempVariable isTempVariable.
347- self assert: (contextItems at: 4 ) tempVariable isTempVariable.
348- self assert: (contextItems at: 5 ) tempVariable isTempVariable.
345+ self assert: (contextItems at: 2 ) isTempVariable.
346+ self assert: (contextItems at: 3 ) isTempVariable.
347+ self assert: (contextItems at: 4 ) isTempVariable.
348+ self assert: (contextItems at: 5 ) isTempVariable.
349349
350350 " receiver"
351351 self assert: (contextItems at: 6 ) rawValue identicalTo: session shortStack first receiver session.
@@ -413,8 +413,8 @@ StDebuggerTest >> testContextTempVarListUpdatesTempsWhenEnteringOrLeavingInlined
413413 assert: (newContextItems at: i)
414414 identicalTo: (contextItems at: i) ].
415415
416- self assert: (newContextItems at: 9 ) tempVariable isTempVariable.
417- self assert: (newContextItems at: 9 ) tempVariable name equals: ' j' .
416+ self assert: (newContextItems at: 9 ) isTempVariable.
417+ self assert: (newContextItems at: 9 ) tempName equals: ' j' .
418418
419419 " We leave inlined block"
420420 2 timesRepeat: [ dbg stepOver ].
@@ -620,7 +620,6 @@ StDebuggerTest >> testDiscardCodeChangesFor [
620620{ #category : ' tests - code pane' }
621621StDebuggerTest >> testDynamicVariableEvaluation [
622622 |activeProcess debuggedProcess |
623- self skipOnPharoCITestingEnvironment.
624623 debugger := StTestDebuggerProvider new
625624 debuggerWithDynamicVariableSuspendedContext.
626625 debugger initializeCode.
@@ -1307,11 +1306,11 @@ StDebuggerTest >> testUpdateLayoutForContextsIfAssertionFailure [
13071306 self
13081307 assert: assertionFailure actualObject
13091308 equals:
1310- ((session interruptedContext tempNamed: #aStringOrBlock ) at: 2 ).
1309+ ((session interruptedContext tempNamed: #aStringOrBlock ) at: 1 ).
13111310 self
13121311 assert: assertionFailure expectedObject
13131312 equals:
1314- ((session interruptedContext tempNamed: #aStringOrBlock ) at: 1 )
1313+ ((session interruptedContext tempNamed: #aStringOrBlock ) at: 2 )
13151314]
13161315
13171316{ #category : ' tests - code pane' }
0 commit comments