diff --git a/reach/configuration_test.go b/reach/configuration_test.go index 046a974..705b290 100644 --- a/reach/configuration_test.go +++ b/reach/configuration_test.go @@ -24,7 +24,11 @@ func TestReachViewConfiguration(t *testing.T) { } if config == nil { - t.Error("config should not be nil") + t.Fatal("config should not be nil") + } + + if config.RTKSettings == nil { + t.Fatal("config.RTKSettings should not be nil") } defer client.Close()