From 77f700836336ac589e8b5cfd3bc38a07a5d874a6 Mon Sep 17 00:00:00 2001 From: Victor Boivie Date: Thu, 5 Oct 2017 16:27:39 +0200 Subject: [PATCH] Minor typo (boostrap) --- agent/config/runtime_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agent/config/runtime_test.go b/agent/config/runtime_test.go index e0af6da06..ee6df1c49 100644 --- a/agent/config/runtime_test.go +++ b/agent/config/runtime_test.go @@ -1315,7 +1315,7 @@ func TestConfigFlagsAndEdgecases(t *testing.T) { err: "'bootstrap_expect > 0' not allowed in dev mode", }, { - desc: "bootstrap-expect and boostrap", + desc: "bootstrap-expect and bootstrap", flags: []string{ `-datacenter=a`, `-data-dir=` + dataDir, @@ -1325,7 +1325,7 @@ func TestConfigFlagsAndEdgecases(t *testing.T) { err: "'bootstrap_expect > 0' and 'bootstrap = true' are mutually exclusive", }, { - desc: "bootstrap-expect=1 equals boostrap", + desc: "bootstrap-expect=1 equals bootstrap", flags: []string{ `-data-dir=` + dataDir, },