File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -41,14 +41,15 @@ ToSpaceSkinPhasesManagerTest >> testCheckSkinPhasesIn [
41
41
space allowSkinPhases: false .
42
42
self deny: space skinPhasesManager isSkinPhasesInstallationPostponed.
43
43
space show.
44
- space when: BlSpaceShownEvent do: [ :event |
45
- space checkSkinPhases.
44
+ space when: BlSpaceShownEvent do: [ :event | | theSpace |
45
+ theSpace := event currentTarget.
46
+ theSpace checkSkinPhases.
46
47
" since skin phases are not allowed "
47
- self deny: space skinPhasesManager skinPhasesInstalled.
48
+ self deny: theSpace skinPhasesManager skinPhasesInstalled.
48
49
" now allow skin phases "
49
- space allowSkinPhases: true .
50
+ theSpace allowSkinPhases: true .
50
51
" since skin phases are allowed and the space is opened "
51
- self assert: space skinPhasesManager skinPhasesInstalled ].
52
+ self assert: theSpace skinPhasesManager skinPhasesInstalled ].
52
53
53
54
54
55
You can’t perform that action at this time.
0 commit comments