From f67724dc3a834b9c9229b2fe977a37da32be1a6c Mon Sep 17 00:00:00 2001 From: William Petit Date: Thu, 20 Sep 2018 17:40:23 +0200 Subject: [PATCH] Add another checkpoint to ReachView.Configuration() test --- reach/configuration_test.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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()