diff options
Diffstat (limited to 'middleware/proxy/upstream_test.go')
-rw-r--r-- | middleware/proxy/upstream_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/middleware/proxy/upstream_test.go b/middleware/proxy/upstream_test.go index 6f96d7ce2..3d69ca8fb 100644 --- a/middleware/proxy/upstream_test.go +++ b/middleware/proxy/upstream_test.go @@ -70,7 +70,7 @@ func TestAllowedPaths(t *testing.T) { for i, test := range tests { isAllowed := upstream.IsAllowedPath(test.name) if test.expected != isAllowed { - t.Errorf("Test %d: expected %v found %v", i+1, test.expected, isAllowed) + t.Errorf("Test %d: expected %v found %v for %s", i+1, test.expected, isAllowed, test.name) } } } |