From b095b41e19b809680281f6c1c14fb8fabfb4d979 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arturo=20Filast=C3=B2?= Date: Wed, 3 Jun 2020 13:13:15 +0200 Subject: [PATCH] Fix broken test --- config/parser_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/parser_test.go b/config/parser_test.go index 87e30ed..9dfae6c 100644 --- a/config/parser_test.go +++ b/config/parser_test.go @@ -28,6 +28,9 @@ func TestParseConfig(t *testing.T) { if err != nil { t.Error(err) } + if config.Sharing.IncludeASN == false { + t.Error("network should be included") + } } func TestUpdateConfig(t *testing.T) {