Add another checkpoint to ReachView.Configuration() test

This commit is contained in:
wpetit 2018-09-20 17:40:23 +02:00
parent e3672cc6d7
commit f67724dc3a
1 changed files with 5 additions and 1 deletions

View File

@ -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()