Browse Source

Forgot Shutdown in unit test.

BDisp 9 months ago
parent
commit
f51fbbe5ed
1 changed files with 2 additions and 0 deletions
  1. 2 0
      UnitTests/Application/ApplicationTests.cs

+ 2 - 0
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 ()