Skip to content

Commit

Permalink
fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
BK1031 committed Aug 28, 2024
1 parent d90d7a2 commit defb3d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/route_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ func TestCreateRouteLocal(t *testing.T) {
t.Errorf("Error when creating route: %v", err)
}
route = GetRouteByRouteAndService("/test", "Service 1")
if route.Method != "GET,POST" {
if route.Method != "POST,GET" {
t.Errorf("Route method not updated, found %s", route.Method)
}
})
Expand Down

0 comments on commit defb3d7

Please sign in to comment.