Skip to content

Commit

Permalink
beryllium: fix misspell typos (#6648)
Browse files Browse the repository at this point in the history
* `teh` -> `the`

* Remove typo'd TODO by implementing assertion

* `comapre` -> `compare`

* `exsiting` -> `existing`
  • Loading branch information
bbrks authored and adamcfraser committed Aug 9, 2024
1 parent 2e3b5e3 commit 76e3516
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion rest/replicatortest/replicator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8570,6 +8570,8 @@ func TestReplicatorUpdateHLVOnPut(t *testing.T) {
// Grab the bucket UUIDs for both rest testers
activeBucketUUID, err := activeRT.GetDatabase().Bucket.UUID()
require.NoError(t, err)
passiveBucketUUID, err := passiveRT.GetDatabase().Bucket.UUID()
require.NoError(t, err)

const rep = "replication"

Expand All @@ -8596,6 +8598,7 @@ func TestReplicatorUpdateHLVOnPut(t *testing.T) {
assert.NoError(t, err)
uintCAS = base.HexCasToUint64(syncData.Cas)

// TODO: assert that the SourceID and Version pair are preserved correctly pending CBG-3211
assert.Equal(t, passiveBucketUUID, syncData.HLV.SourceID)
assert.Equal(t, uintCAS, syncData.HLV.CurrentVersionCAS)
assert.Equal(t, uintCAS, syncData.HLV.Version)
}

0 comments on commit 76e3516

Please sign in to comment.