diff --git a/node/pkg/node/node_test.go b/node/pkg/node/node_test.go index 6d99d926b..aa767704e 100644 --- a/node/pkg/node/node_test.go +++ b/node/pkg/node/node_test.go @@ -762,6 +762,14 @@ func TestGuardianConfigs(t *testing.T) { }, err: "Check the order of your options.", }, + { + name: "double-configuration", + opts: []*GuardianOption{ + GuardianOptionBigTablePersistence(nil), + GuardianOptionBigTablePersistence(nil), + }, + err: "Component bigtable is already configured and cannot be configured a second time", + }, } testGuardianConfigurations(t, tc) }