Merge pull request #34752 from ivan4th/fix-misspellings-of-receive

Automatic merge from submit-queue

Fix misspellings of 'receive'

Fix typos
pull/6/head
Kubernetes Submit Queue 2016-10-17 03:19:18 -07:00 committed by GitHub
commit fce3b95345
3 changed files with 4 additions and 4 deletions

View File

@ -67,7 +67,7 @@ command. At this point the charm will have two raidz pools added together, both
of which could handle the loss of one disk each.
The storage code handles the addition of devices to the charm and when it
recieves three disks creates a raidz pool that is mounted at the /srv/kubernetes
receives three disks creates a raidz pool that is mounted at the /srv/kubernetes
directory by default. If you need the storage in another location you must
change the `mount-point` value in layer.yaml before the charms is deployed.

View File

@ -319,7 +319,7 @@ func TestValidateAdds(t *testing.T) {
continue
}
if !v.shouldPass && len(errs) == 0 {
t.Errorf("%s should have failed but recieved no errors", k)
t.Errorf("%s should have failed but received no errors", k)
}
}
}
@ -382,7 +382,7 @@ func TestValidateDrops(t *testing.T) {
continue
}
if !v.shouldPass && len(errs) == 0 {
t.Errorf("%s should have failed but recieved no errors", k)
t.Errorf("%s should have failed but received no errors", k)
}
}
}

View File

@ -800,7 +800,7 @@ func TestGenerateContainerSecurityContextReadOnlyRootFS(t *testing.T) {
t.Errorf("%s expected a nil ReadOnlyRootFilesystem but got %t", k, *sc.ReadOnlyRootFilesystem)
}
if v.expected != nil && sc.ReadOnlyRootFilesystem == nil {
t.Errorf("%s expected a non nil ReadOnlyRootFilesystem but recieved nil", k)
t.Errorf("%s expected a non nil ReadOnlyRootFilesystem but received nil", k)
}
if v.expected != nil && sc.ReadOnlyRootFilesystem != nil && (*v.expected != *sc.ReadOnlyRootFilesystem) {
t.Errorf("%s expected a non nil ReadOnlyRootFilesystem set to %t but got %t", k, *v.expected, *sc.ReadOnlyRootFilesystem)