Skip to content

Commit

Permalink
More test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ducasse committed Oct 28, 2020
1 parent 469febd commit 1ccb9bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Kernel-Tests/FluidClassDefinitionPrinterTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ FluidClassDefinitionPrinterTest >> testExpandedOnClassWithoutTag [

self
assert: (self expandedForClass: EncoderForV3)
equals: 'Object < #EncoderForV3
equals: 'Object << #EncoderForV3
layout: FixedLayout;
uses: {};
slots: {};
Expand All @@ -127,7 +127,7 @@ FluidClassDefinitionPrinterTest >> testExpandedPoint [

self
assert: (self expandedForClass: Point)
equals: 'Object < #Point
equals: 'Object << #Point
layout: FixedLayout;
uses: {};
slots: { #x . #y };
Expand All @@ -154,7 +154,7 @@ FluidClassDefinitionPrinterTest >> testExpandedTime [

self
assert: (self expandedForClass: Time)
equals: 'Object < #Time
equals: 'Object << #Time
layout: FixedLayout;
uses: {};
slots: { #seconds . #nanos };
Expand All @@ -180,7 +180,7 @@ FluidClassDefinitionPrinterTest >> testFullyExpandedSimple [

self
assert: (FluidClassDefinitionPrinter new classDefinitionTemplateInPackage: 'Kernel')
equals: 'Object < #MyClass
equals: 'Object << #MyClass
layout: FixedLayout;
uses: {};
slots: {};
Expand Down

0 comments on commit 1ccb9bb

Please sign in to comment.