Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
estebanlm committed Oct 27, 2020
1 parent d690462 commit 0d9aa1f
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ StDebuggerStackCommandTreeBuilderTest >> testStackContextMenuStackEditionsComman
{ #category : #tests }
StDebuggerStackCommandTreeBuilderTest >> testStackContextNavigationCommands [
|cmdGroup commands|

cmdGroup := builder stackContextNavigationCommands.
commands := cmdGroup allCommands
collect: [ :spCommand | spCommand decoratedCommand ].
Expand All @@ -184,12 +185,13 @@ StDebuggerStackCommandTreeBuilderTest >> testStackContextNavigationCommands [

self assert: commands first class identicalTo: SpBrowseClassCommand.
self assert: commands first name equals: 'method'.
self assert: commands first context identicalTo: debugger stackTable selection selectedItem method.
"self assert: commands first context identicalTo: debugger stackTable selection selectedItem method."
self assert: commands first selector equals: #doBrowseClass.

self assert: commands second class identicalTo: SpBrowseClassCommand.
self assert: commands second name equals: 'receiver'.
self assert: commands second context identicalTo: debugger stackTable selection selectedItem receiver class

"self assert: commands second context identicalTo: debugger stackTable selection selectedItem receiver class"
self assert: commands second selector equals: #doBrowseReceiverClass.

]

Expand Down

0 comments on commit 0d9aa1f

Please sign in to comment.