From 8583e296458e7d9117f5fb85e80bc744ad0f36e7 Mon Sep 17 00:00:00 2001 From: Marcelo Pires Date: Wed, 12 Sep 2018 09:45:47 +0200 Subject: [PATCH] fix some typos --- subscription/subscription_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/subscription/subscription_test.go b/subscription/subscription_test.go index 049471b..ed5359e 100644 --- a/subscription/subscription_test.go +++ b/subscription/subscription_test.go @@ -21,14 +21,14 @@ func TestIsValidChannel(t *testing.T) { want bool }{ { - name: "single asterisc", + name: "single asterisk", args: args{ channel: "/*", }, want: true, }, { - name: "double asterisc", + name: "double asterisk", args: args{ channel: "/**", }, @@ -56,7 +56,7 @@ func TestIsValidChannel(t *testing.T) { want: false, }, { - name: "invalid asterisc at the middle", + name: "invalid asterisk at the middle", args: args{ channel: "/foo/**/bar", },