feat: add timeout to Qodana scan job and update type retrieval in GBM tests

This commit is contained in:
Miha Kralj
2025-12-28 16:48:32 -08:00
parent 1bc769385a
commit a64cc1c224
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -272,7 +272,8 @@ public class GBMTests
}
// GBM should not expose any history storage
var type = gbm.GetType();
// Use typeof() instead of GetType() to satisfy trimming analyzer
var type = typeof(GBM);
var barsProperty = type.GetProperty("Bars");
Assert.Null(barsProperty);