Skip to content

Commit

Permalink
Fix setup node tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nkryuchkov committed Dec 11, 2019
1 parent 27c2b25 commit 3bc6039
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/setup/node_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ func TestNode(t *testing.T) {
forwardRoute, reverseRoute := generateForwardAndReverseRoutes(route)

wantEdgeRules := routing.EdgeRules{
Desc: forwardRoute.Desc,
Desc: reverseRoute.Desc,
Forward: forwardRules[route.Desc.SrcPK()],
Reverse: consumeRules[route.Desc.SrcPK()],
}
Expand All @@ -254,7 +254,7 @@ func TestNode(t *testing.T) {
}

respRouteRules := routing.EdgeRules{
Desc: reverseRoute.Desc,
Desc: forwardRoute.Desc,
Forward: forwardRules[route.Desc.DstPK()],
Reverse: consumeRules[route.Desc.DstPK()],
}
Expand Down

0 comments on commit 3bc6039

Please sign in to comment.