Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

21080 Super tearDown need to be called as last message in tearDown of Fuel (FLSerializationTest, FLUserGuidesTest) #766

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/FuelTests/FLSerializationTest.class.st
Expand Up @@ -250,13 +250,14 @@ FLSerializationTest >> streamFactory [

{ #category : #running }
FLSerializationTest >> tearDown [
super tearDown.

"Traits should be cleaned before classFactory because it seems class factory only knwos how to clean classes, not traits."
self tearDownTraits.
self tearDownClassFactory.
self tearDownGlobalVariables.
self streamFactory tearDown.
self tearDownInstanceVariables.
super tearDown.
]

{ #category : #running }
Expand Down
3 changes: 2 additions & 1 deletion src/FuelTests/FLUserGuidesTest.class.st
Expand Up @@ -9,9 +9,10 @@ Class {

{ #category : #running }
FLUserGuidesTest >> tearDown [
super tearDown.

#('demo.fuel' 'numbers.fuel' 'number.fuel.zip' 'example.FL' )
do: [:each | self deleteFileNamed: each ].
super tearDown

]

Expand Down