From eb0818374c1c4bdc47a3e007c81e834761e69a08 Mon Sep 17 00:00:00 2001 From: arkadiuszos4chain Date: Tue, 14 Nov 2023 01:56:37 +0100 Subject: [PATCH] fix(BUX-250): fix options test --- client_options_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client_options_test.go b/client_options_test.go index 31f0c043..6c250bf1 100644 --- a/client_options_test.go +++ b/client_options_test.go @@ -122,7 +122,7 @@ func TestClient_defaultModelOptions(t *testing.T) { require.NotNil(t, dco.dataStore) require.Nil(t, dco.dataStore.ClientInterface) require.NotNil(t, dco.dataStore.options) - assert.Equal(t, 0, len(dco.dataStore.options)) + assert.Equal(t, 1, len(dco.dataStore.options)) require.NotNil(t, dco.newRelic)