From 8e361beb7a596edd8da67e3897ea96cc0e0f3666 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 e0af6da060..ee6df1c497 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, },