insert space after comment character in cmd folder

This commit is contained in:
Nagarjun
2016-01-05 12:46:18 +05:30
parent 9264340338
commit c98364e79b
8 changed files with 21 additions and 21 deletions

View File

@@ -209,21 +209,21 @@ func Test_getProxyMode(t *testing.T) {
}
}
//This test verifies that Proxy Server does not crash that means
//Config and iptinterface are not nil when CleanupAndExit is true.
//To avoid proxy crash: https://github.com/kubernetes/kubernetes/pull/14736
// This test verifies that Proxy Server does not crash that means
// Config and iptinterface are not nil when CleanupAndExit is true.
// To avoid proxy crash: https://github.com/kubernetes/kubernetes/pull/14736
func TestProxyServerWithCleanupAndExit(t *testing.T) {
//creates default config
// creates default config
config := options.NewProxyConfig()
//sets CleanupAndExit manually
// sets CleanupAndExit manually
config.CleanupAndExit = true
//creates new proxy server
// creates new proxy server
proxyserver, err := NewProxyServerDefault(config)
//verifies that nothing is nill except error
// verifies that nothing is nill except error
assert.Nil(t, err)
assert.NotNil(t, proxyserver)
assert.NotNil(t, proxyserver.Config)