Skip to content

Commit

Permalink
Fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jmalicevic committed Jan 30, 2024
1 parent e01569d commit ee3ebc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"path/filepath"
"strings"
"testing"
"time"

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"time"
)

// Register a test backend for PrefixDB as well, with some unrelated junk data
Expand Down Expand Up @@ -139,7 +139,7 @@ func testBackendGetSetDelete(t *testing.T, backend BackendType) {

err = db.Compact(nil, nil)
if strings.Contains(string(backend), "pebbledb") {
// In pebble the strat and end will be the same so
// In pebble the start and end will be the same so
// we expect an error
require.Error(t, err)
}
Expand Down

0 comments on commit ee3ebc3

Please sign in to comment.