Skip to content

Commit

Permalink
fix edits by ide
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanSussman committed Aug 26, 2024
1 parent 170eae0 commit 9f8b175
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion internal/token/compose_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ func TestToken_Compose(t *testing.T) {
}

if !strings.EqualFold(got, want) {
t.Errorf("Compose is %v, wantName %v", got, want)
t.Errorf("Compose is %v, want %v", got, want)
}
}
10 changes: 5 additions & 5 deletions internal/token/parse_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func TestTokenManager_ParseToken(t *testing.T) {
}

if !reflect.DeepEqual(got, tt.Want) {
t.Errorf("Parse is %v, wantName %v", got, tt.Want)
t.Errorf("Parse is %v, want %v", got, tt.Want)
}
})
}
Expand All @@ -138,7 +138,7 @@ func TestTokenManager_ParseToken_Error_NoParse(t *testing.T) {
}

if got != nil {
t.Errorf("Parse is %v, wantName nil", got)
t.Errorf("Parse is %v, want nil", got)
}
}

Expand Down Expand Up @@ -208,7 +208,7 @@ func TestTokenManager_ParseToken_NoSubject(t *testing.T) {
}

if got != nil {
t.Errorf("Parse is %v, wantName nil", got)
t.Errorf("Parse is %v, want nil", got)
}
}

Expand Down Expand Up @@ -248,7 +248,7 @@ func TestTokenManager_ParseToken_Error_InvalidSignature(t *testing.T) {
}

if got != nil {
t.Errorf("Parse is %v, wantName nil", got)
t.Errorf("Parse is %v, want nil", got)
}
}

Expand Down Expand Up @@ -285,6 +285,6 @@ func TestToken_Parse_AccessToken_NoExpiration(t *testing.T) {
}

if got != nil {
t.Errorf("Parse is %v, wantName nil", got)
t.Errorf("Parse is %v, want nil", got)
}
}

0 comments on commit 9f8b175

Please sign in to comment.