From f51fbbe5ed5ee2f062438e4939d0a2f0191668f7 Mon Sep 17 00:00:00 2001 From: BDisp Date: Sun, 10 Nov 2024 19:01:43 +0000 Subject: [PATCH] Forgot Shutdown in unit test. --- UnitTests/Application/ApplicationTests.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/UnitTests/Application/ApplicationTests.cs b/UnitTests/Application/ApplicationTests.cs index e30d4c55e..1bd06b30c 100644 --- a/UnitTests/Application/ApplicationTests.cs +++ b/UnitTests/Application/ApplicationTests.cs @@ -596,6 +596,8 @@ public class ApplicationTests Assert.Equal (new (0, 0, 80, 25), Application.Screen); Application.Screen = new (0, 0, driver.Cols, driver.Rows); Assert.Equal (new (0, 0, 100, 30), driver.Screen); + + Application.Shutdown (); } private void Init ()