From 85c45e4c0d128b6dceb6286618ee234c10331527 Mon Sep 17 00:00:00 2001 From: adri09070 <97704417+adri09070@users.noreply.github.com> Date: Fri, 9 Jun 2023 15:35:52 +0200 Subject: [PATCH] forgot a call to super tearDown --- src/Chest-Commands-Tests/ChestCommandTest.class.st | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Chest-Commands-Tests/ChestCommandTest.class.st b/src/Chest-Commands-Tests/ChestCommandTest.class.st index ff637a8..47ef410 100644 --- a/src/Chest-Commands-Tests/ChestCommandTest.class.st +++ b/src/Chest-Commands-Tests/ChestCommandTest.class.st @@ -22,5 +22,6 @@ ChestCommandTest >> tearDown [ "Removing chests that currently exist but did not exist before the test execution" nowChests do: [ :aChest | (initialChests includes: aChest) ifFalse: [ - Chest removeChest: aChest ] ] + Chest removeChest: aChest ] ]. + super tearDown ]