remove redundant words 'the' in comment

Signed-off-by: zhoulin xie <zhoulin.xie@daocloud.io>
This commit is contained in:
zhoulin xie 2019-02-13 22:40:34 +08:00
parent 01e7b3040a
commit 77ba845e6d
3 changed files with 7 additions and 7 deletions

View File

@ -127,8 +127,8 @@ func decodeVersionedSet(encodedVersionedSet *metav1.ManagedFieldsEntry) (version
return versionedSet, nil return versionedSet, nil
} }
// encodeManagedFields converts ManagedFields from the the format used by // encodeManagedFields converts ManagedFields from the format used by
// sigs.k8s.io/structured-merge-diff to the the wire format (api format) // sigs.k8s.io/structured-merge-diff to the wire format (api format)
func encodeManagedFields(managedFields fieldpath.ManagedFields) (encodedManagedFields []metav1.ManagedFieldsEntry, err error) { func encodeManagedFields(managedFields fieldpath.ManagedFields) (encodedManagedFields []metav1.ManagedFieldsEntry, err error) {
// Sort the keys so a predictable order will be used. // Sort the keys so a predictable order will be used.
managers := []string{} managers := []string{}

View File

@ -76,7 +76,7 @@ func TestLeaderElectionHealthChecker(t *testing.T) {
elector: nil, elector: nil,
}, },
{ {
description: "call check when the the lease is far expired", description: "call check when the lease is far expired",
expected: fmt.Errorf("failed election to renew leadership on lease %s", "foo"), expected: fmt.Errorf("failed election to renew leadership on lease %s", "foo"),
adaptorTimeout: time.Second * 20, adaptorTimeout: time.Second * 20,
elector: &LeaderElector{ elector: &LeaderElector{
@ -93,7 +93,7 @@ func TestLeaderElectionHealthChecker(t *testing.T) {
}, },
}, },
{ {
description: "call check when the the lease is far expired but held by another server", description: "call check when the lease is far expired but held by another server",
expected: nil, expected: nil,
adaptorTimeout: time.Second * 20, adaptorTimeout: time.Second * 20,
elector: &LeaderElector{ elector: &LeaderElector{
@ -110,7 +110,7 @@ func TestLeaderElectionHealthChecker(t *testing.T) {
}, },
}, },
{ {
description: "call check when the the lease is not expired", description: "call check when the lease is not expired",
expected: nil, expected: nil,
adaptorTimeout: time.Second * 20, adaptorTimeout: time.Second * 20,
elector: &LeaderElector{ elector: &LeaderElector{
@ -127,7 +127,7 @@ func TestLeaderElectionHealthChecker(t *testing.T) {
}, },
}, },
{ {
description: "call check when the the lease is expired but inside the timeout", description: "call check when the lease is expired but inside the timeout",
expected: nil, expected: nil,
adaptorTimeout: time.Second * 20, adaptorTimeout: time.Second * 20,
elector: &LeaderElector{ elector: &LeaderElector{

View File

@ -14,7 +14,7 @@ some "trivial" set of actions on a socket.
should return the disposition of the test. should return the disposition of the test.
Runners can be executed into two different ways, either through the Runners can be executed into two different ways, either through the
the command-line or via an HTTP request: command-line or via an HTTP request:
## Command-line ## Command-line