This commit is contained in:
Veres Lajos
2015-08-08 22:29:57 +01:00
parent 2bfa9a1f98
commit 9f77e49109
116 changed files with 160 additions and 160 deletions

View File

@@ -95,13 +95,13 @@ func TestSetCurrentContext(t *testing.T) {
test.run(t)
}
func TestSetNonExistantContext(t *testing.T) {
func TestSetNonExistentContext(t *testing.T) {
expectedConfig := newRedFederalCowHammerConfig()
test := configCommandTest{
args: []string{"use-context", "non-existant-config"},
args: []string{"use-context", "non-existent-config"},
startingConfig: expectedConfig,
expectedConfig: expectedConfig,
expectedOutputs: []string{`No context exists with the name: "non-existant-config"`},
expectedOutputs: []string{`No context exists with the name: "non-existent-config"`},
}
test.run(t)
}