From 9b05d44a0fa231aaea0540775593308b86321369 Mon Sep 17 00:00:00 2001 From: bernat Date: Mon, 17 May 2021 13:08:12 +0200 Subject: [PATCH] Restore settings after smoke tests --- PythonAPI/test/smoke/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PythonAPI/test/smoke/__init__.py b/PythonAPI/test/smoke/__init__.py index 4b0b83446..b79339f54 100644 --- a/PythonAPI/test/smoke/__init__.py +++ b/PythonAPI/test/smoke/__init__.py @@ -48,5 +48,7 @@ class SyncSmokeTest(SmokeTest): self.world.tick() def tearDown(self): + self.world.apply_settings(self.settings) + self.world.tick() self.settings = None super(SyncSmokeTest, self).tearDown()