Browse Source

Fix unit test error.

BDisp 10 months ago
parent
commit
8c4778ec48
1 changed files with 1 additions and 1 deletions
  1. 1 1
      UnitTests/ConsoleDrivers/DriverColorTests.cs

+ 1 - 1
UnitTests/ConsoleDrivers/DriverColorTests.cs

@@ -60,7 +60,7 @@ public class DriverColorTests
 
     //[InlineData (typeof (ANSIDriver), true)]
     [InlineData (typeof (WindowsDriver), true)]
-    [InlineData (typeof (CursesDriver), false)]
+    [InlineData (typeof (CursesDriver), true)]
     public void SupportsTrueColor_Defaults (Type driverType, bool expectedSetting)
     {
         var driver = (ConsoleDriver)Activator.CreateInstance (driverType);