Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
git-hulk committed Sep 6, 2024
1 parent b68e337 commit 406f264
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/gocase/integration/replication/replication_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -539,9 +539,9 @@ func TestFullSyncReplication(t *testing.T) {
util.WaitForOffsetSync(t, masterClient, slaveClient, 60*time.Second)

// Make sure the full sync happened in replication
sync_full_count, err := strconv.Atoi(util.FindInfoEntry(masterClient, "sync_full"))
syncFullCount, err := strconv.Atoi(util.FindInfoEntry(masterClient, "sync_full"))
require.NoError(t, err)
require.Greater(t, sync_full_count, 0)
require.Greater(t, syncFullCount, 0)

got, err := slaveClient.Get(ctx, "key1").Result()
require.NoError(t, err)
Expand Down

0 comments on commit 406f264

Please sign in to comment.