From 4c1c3952b7d9d0a061a3fa7b36fd373ba0398ebc Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Thu, 27 Apr 2017 01:12:50 -0300 Subject: [PATCH] fixed typo (#250) --- mux_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mux_test.go b/mux_test.go index 405aca6d..1dec7abe 100644 --- a/mux_test.go +++ b/mux_test.go @@ -1393,7 +1393,7 @@ func TestSubrouterErrorHandling(t *testing.T) { func TestPanicOnCapturingGroups(t *testing.T) { defer func() { if recover() == nil { - t.Errorf("(Test that capturing groups now fail fast) Expected panic, however test completed sucessfully.\n") + t.Errorf("(Test that capturing groups now fail fast) Expected panic, however test completed successfully.\n") } }() NewRouter().NewRoute().Path("/{type:(promo|special)}/{promoId}.json")