From 7d16954aeb3c0ae99d3b777bb93cc1c971ff087b Mon Sep 17 00:00:00 2001 From: Jordan Singer Date: Mon, 9 Oct 2023 12:37:15 -0500 Subject: [PATCH] clean up unit test --- paths_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/paths_test.go b/paths_test.go index 814f3be..5c8188e 100644 --- a/paths_test.go +++ b/paths_test.go @@ -576,7 +576,6 @@ func Test_BellmanFord(t *testing.T) { for name, test := range tests { graph := New(StringHash, Directed()) graph.(*directed[string, string]).traits.IsWeighted = test.isWeighted - graph.(*directed[string, string]).traits.IsDirected = true for _, vertex := range test.vertices { _ = graph.AddVertex(vertex)