Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
steviebps committed Jul 2, 2023
1 parent 30d5306 commit 7ecdb7e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions pkg/chamber_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package realm
import (
"encoding/json"
"strconv"
"sync"
"testing"
)

Expand All @@ -17,7 +16,6 @@ func TestInheritWith(t *testing.T) {
},
},
},
lock: new(sync.RWMutex),
}
middle := &Chamber{
Toggles: map[string]*OverrideableToggle{
Expand All @@ -28,7 +26,6 @@ func TestInheritWith(t *testing.T) {
},
},
},
lock: new(sync.RWMutex),
}
top := &Chamber{
Toggles: map[string]*OverrideableToggle{
Expand All @@ -39,7 +36,6 @@ func TestInheritWith(t *testing.T) {
},
},
},
lock: new(sync.RWMutex),
}

middle.InheritWith(top.Toggles)
Expand Down

0 comments on commit 7ecdb7e

Please sign in to comment.