From 4fc1999847c5a7c419cc31418c1ed7c129f0de66 Mon Sep 17 00:00:00 2001 From: William Martin Date: Thu, 19 Oct 2023 15:39:10 +0200 Subject: [PATCH] Add link to token source issue --- internal/config/auth_config_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/config/auth_config_test.go b/internal/config/auth_config_test.go index 2b0d0ff98..e4a1dc9c4 100644 --- a/internal/config/auth_config_test.go +++ b/internal/config/auth_config_test.go @@ -58,8 +58,8 @@ func TestTokenStoredInConfig(t *testing.T) { token, source := authCfg.Token("github.com") // Then the token is successfully fetched - // and the source is set to oauth_token but this isn't great - // but I can't find the issue # that references this. + // and the source is set to oauth_token but this isn't great: + // https://github.com/cli/go-gh/issues/94 require.Equal(t, "test-token", token) require.Equal(t, "oauth_token", source) }