Skip to content

Commit

Permalink
Fixing the load order.
Browse files Browse the repository at this point in the history
  • Loading branch information
tesonep committed Oct 30, 2020
1 parent b8e7f0c commit 6ca7209
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions src/TraitsV2-Tests/T2CommonClassDefinitionPrinterTest.class.st
@@ -0,0 +1,22 @@
Class {
#name : #T2CommonClassDefinitionPrinterTest,
#superclass : #T2AbstractTest,
#instVars : [
'slotuse'
],
#category : #'TraitsV2-Tests-Base'
}

{ #category : #running }
T2CommonClassDefinitionPrinterTest >> setUp [
super setUp.
slotuse := ClassDefinitionPrinter showFluidClassDefinition.

]

{ #category : #running }
T2CommonClassDefinitionPrinterTest >> tearDown [

ClassDefinitionPrinter showFluidClassDefinition: slotuse.
super tearDown
]
@@ -1,6 +1,6 @@
Class {
#name : #T2FluidClassDefinitionPrinterTest,
#superclass : #CommonClassDefinitionPrinterTest,
#superclass : #T2CommonClassDefinitionPrinterTest,
#category : #'TraitsV2-Tests-Base'
}

Expand Down
@@ -1,6 +1,6 @@
Class {
#name : #T2OldPharoClassDefinitionPrinterTest,
#superclass : #CommonClassDefinitionPrinterTest,
#superclass : #T2CommonClassDefinitionPrinterTest,
#category : #'TraitsV2-Tests-Base'
}

Expand Down

0 comments on commit 6ca7209

Please sign in to comment.