Skip to content

Commit

Permalink
fix broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyan11 committed Mar 8, 2024
1 parent 6872755 commit 5523bb6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Toplo-Serialization/ToSerializerTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,14 @@ ToSerializerTest >> testIsLeaf4 [
yourself.
b1 addChild: b2.

self deny: b1 shouldSerializedChildren.
self assert: b1 shouldSerializedChildren.
self assert: b1 id equals: #b1.
self assert: b1 childrenCount equals: 1.

element := b1 serializeThenMaterialize.
self deny: element shouldSerializedChildren.
self assert: element shouldSerializedChildren.
self assert: element id equals: #b1.
self assert: element childrenCount equals: 0.
self assert: element childrenCount equals: 1.
]

{ #category : #tests }
Expand Down

0 comments on commit 5523bb6

Please sign in to comment.