Skip to content
Snippets Groups Projects
Commit 9f8494dc authored by Maximilian Wilhelm's avatar Maximilian Wilhelm
Browse files

Remove errornous tests.


Signed-off-by: default avatarMaximilian Wilhelm <max@sdn.clinic>
ACKed-by: Serge Bazanski
parent 11553306
No related branches found
No related tags found
No related merge requests found
......@@ -11,23 +11,6 @@ import (
"github.com/bio-routing/bio-rd/routingtable/locRIB"
)
func TestBgpServerConfigCheck(t *testing.T) {
s := NewBgpServer()
err := s.Start(&config.Global{})
if err == nil {
t.Fatalf("server with empty config should not start")
}
err = s.Start(&config.Global{
LocalASN: 204880,
RouterID: 2137,
})
if err != nil {
t.Fatalf("server should have started, got err: %v", err)
}
}
func TestBgpServerPeerSnapshot(t *testing.T) {
s := NewBgpServer()
err := s.Start(&config.Global{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment