add CBT bitmap implementation

Signed-off-by: Lyndon-Li <lyonghui@vmware.com>
This commit is contained in:
Lyndon-Li
2026-04-21 17:52:06 +08:00
parent 26b125769e
commit 6b7df3ef4c
+1 -2
View File
@@ -21,7 +21,6 @@ import (
"errors"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
"github.com/stretchr/testify/require"
@@ -129,7 +128,7 @@ func TestSetBitmapOrFull(t *testing.T) {
if tt.expectedErrStr != "" {
require.Error(t, err)
assert.EqualError(t, err, tt.expectedErrStr)
require.EqualError(t, err, tt.expectedErrStr)
} else {
require.NoError(t, err)
}