fix: tests

This commit is contained in:
yusing
2025-04-24 15:45:34 +08:00
parent 76fb0cfdbb
commit edada22ac0
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ func TestStoreNil(t *testing.T) {
if v.Load() != nil {
t.Fatal("expected nil")
}
if v.IsNil() {
if !v.IsNil() {
t.Fatal("expected true")
}
}