From 3c6528c7181eb0aed8d5eb7197c9fdf98d6c2342 Mon Sep 17 00:00:00 2001 From: lleadbet Date: Tue, 13 Jul 2021 16:59:24 -0700 Subject: [PATCH] fixing tests --- internal/util/path_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/util/path_test.go b/internal/util/path_test.go index 9c786904..c6aceceb 100644 --- a/internal/util/path_test.go +++ b/internal/util/path_test.go @@ -14,7 +14,7 @@ func TestGetApplicationDir(t *testing.T) { dir, err := GetApplicationDir() a.Nil(err, "GetApplicationDir() failed with error %v", err) - a.Equal(true, strings.HasSuffix(dir, ".twitch-cli"), "GetApplicationDir() expected to end with %v, got %v", ".twitch-cli", dir) + a.Equal(true, strings.HasSuffix(dir, "twitch-cli"), "GetApplicationDir() expected to end with %v, got %v", ".twitch-cli", dir) } func TestGetConfigPath(t *testing.T) {