test: replace one more BoolFalse with agent.Bool()

This commit is contained in:
Frank Schroeder 2017-05-31 11:41:17 +02:00
parent dcc68f0f85
commit db15cd847a
No known key found for this signature in database
GPG Key ID: 4D65C6EAEC87DECD
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ func TestExecCommand_implements(t *testing.T) {
func TestExecCommandRun(t *testing.T) {
t.Parallel()
cfg := agent.TestConfig()
cfg.DisableRemoteExec = &agent.BoolFalse
cfg.DisableRemoteExec = agent.Bool(false)
a := agent.NewTestAgent(t.Name(), cfg)
defer a.Shutdown()