aboutsummaryrefslogtreecommitdiff
path: root/hotline/access_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'hotline/access_test.go')
-rw-r--r--hotline/access_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/hotline/access_test.go b/hotline/access_test.go
index b262407..f2755f3 100644
--- a/hotline/access_test.go
+++ b/hotline/access_test.go
@@ -11,13 +11,13 @@ func Test_accessBitmap_IsSet(t *testing.T) {
}
tests := []struct {
name string
- bits accessBitmap
+ bits AccessBitmap
args args
want bool
}{
{
name: "returns true when bit is set",
- bits: func() (access accessBitmap) {
+ bits: func() (access AccessBitmap) {
access.Set(22)
return access
}(),
@@ -26,7 +26,7 @@ func Test_accessBitmap_IsSet(t *testing.T) {
},
{
name: "returns false when bit is unset",
- bits: accessBitmap{},
+ bits: AccessBitmap{},
args: args{i: 22},
want: false,
},