From 271bc0e758c2b54535b6ed0bc00e2975246d2dfa Mon Sep 17 00:00:00 2001 From: Joel Unzain Date: Mon, 3 Feb 2020 11:22:30 -0800 Subject: [PATCH] fix typo in unit test - improves coverage (#53) --- token_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/token_test.go b/token_test.go index aeb6757..8654645 100644 --- a/token_test.go +++ b/token_test.go @@ -119,8 +119,8 @@ func TestTypedGetters(t *testing.T) { topKeyMap = make(map[string]interface{}) m = map[string]interface{}{ - "nonOfTheAboveType": struct{}{}, - topKey: topKeyMap, + badTypeKey: struct{}{}, + topKey: topKeyMap, } )