From 9bf3daf57f66985b350890b89ca333e40ea49efe Mon Sep 17 00:00:00 2001 From: Manik Rana Date: Sat, 27 Jan 2024 14:38:07 +0530 Subject: [PATCH] chore: remove comments Signed-off-by: Manik Rana --- go/vt/vtgate/semantics/bitset/bitset_test.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/go/vt/vtgate/semantics/bitset/bitset_test.go b/go/vt/vtgate/semantics/bitset/bitset_test.go index 05c9ba63ccd..f6e6b4923a4 100644 --- a/go/vt/vtgate/semantics/bitset/bitset_test.go +++ b/go/vt/vtgate/semantics/bitset/bitset_test.go @@ -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) @@ -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 {