修复缓存
Build docker and publish / build (20.15.1) (push) Successful in 7m26s

This commit is contained in:
2026-03-06 21:58:29 -08:00
parent 19932bb9f7
commit 4d913c1728
175 changed files with 437 additions and 12104 deletions
-27
View File
@@ -1,27 +0,0 @@
package nodeMultiplier
import (
"testing"
"time"
)
func TestNewNodeMultiplierManager(t *testing.T) {
periods := []TimePeriod{
{
StartTime: "23:00.000",
EndTime: "1:59.000",
Multiplier: 1.2,
},
{
StartTime: "12:00.000",
EndTime: "13:59.000",
Multiplier: 0.5,
},
}
m := NewNodeMultiplierManager(periods)
if len(m.Periods) != 1 {
t.Errorf("expected 1, got %d", len(m.Periods))
}
t.Log("00:10 multiplier:", m.GetMultiplier(time.Date(0, 1, 1, 0, 10, 0, 0, time.UTC)))
}