Skip to content

Commit

Permalink
chore: remove comments
Browse files Browse the repository at this point in the history
Signed-off-by: Manik Rana <[email protected]>
  • Loading branch information
Maniktherana committed Jan 27, 2024
1 parent 7e55ecf commit 9bf3daf
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions go/vt/vtgate/semantics/bitset/bitset_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ func TestSingletons(t *testing.T) {

func TestSingleBitReturnsNegativeOne(t *testing.T) {
bs := Bitset("\x0F")

result := bs.SingleBit()

assert.Equal(t, -1, result)
Expand All @@ -68,8 +67,8 @@ func TestBuild(t *testing.T) {
}{
{"Empty Bits", []int{}, ""},
{"Single Bit", []int{3}, "\x08"},
{"Multiple Bits", []int{1, 3, 5, 7}, "\xAA"}, // 0b10101010
{"Large Bits", []int{10, 11, 12}, "\x00\x1C"}, // 0b1110000000000
{"Multiple Bits", []int{1, 3, 5, 7}, "\xAA"},
{"Large Bits", []int{10, 11, 12}, "\x00\x1C"},
}

for _, tc := range tt {
Expand Down

0 comments on commit 9bf3daf

Please sign in to comment.