Skip to content

Commit

Permalink
Merge pull request #769 from astares/21082-Super-tearDown-need-to-be-…
Browse files Browse the repository at this point in the history
…called-as-last-message-in-tearDown-of--Glamour-tests

21082 Super tearDown need to be called as last message in tearDown of Glamour tests
  • Loading branch information
MarcusDenker committed Jan 28, 2018
2 parents 6ed0f7c + d85e757 commit f7a4d8e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
Expand Up @@ -12,7 +12,8 @@ Class {

{ #category : #running }
GLMScrollListBrickTest >> tearDown [
window ifNotNil: [ :aWindow | aWindow delete ]
window ifNotNil: [ :aWindow | aWindow delete ].
super tearDown
]

{ #category : #tests }
Expand Down
Expand Up @@ -17,7 +17,8 @@ GLMAnnouncementPropagationTest >> setUp [

{ #category : #running }
GLMAnnouncementPropagationTest >> tearDown [
GLMLogger reset
GLMLogger reset.
super tearDown
]

{ #category : #tests }
Expand Down
3 changes: 2 additions & 1 deletion src/Glamour-Tests-Morphic/GLMMorphicTest.class.st
Expand Up @@ -97,7 +97,8 @@ GLMMorphicTest >> send: treeMorph mouseUpWithShift: aBoolean onItem: treeNodeMor

{ #category : #running }
GLMMorphicTest >> tearDown [
window ifNotNil: [window delete]
window ifNotNil: [ window delete ].
super tearDown
]

{ #category : #private }
Expand Down
3 changes: 2 additions & 1 deletion src/Glamour-Tests-Morphic/GLMPagerMorphTest.class.st
Expand Up @@ -45,7 +45,8 @@ GLMPagerMorphTest >> setUp [
{ #category : #running }
GLMPagerMorphTest >> tearDown [

window ifNotNil: [ window delete ]
window ifNotNil: [ window delete ].
super tearDown
]

{ #category : #tests }
Expand Down

0 comments on commit f7a4d8e

Please sign in to comment.