2
0
mirror of https://github.com/owncast/owncast.git synced 2024-10-10 19:16:02 +00:00
owncast/utils/accessTokens_test.go
Meisam 7361578412
style fix for error checking ()
+additional linting
2021-07-09 11:16:44 -07:00

12 lines
151 B
Go

package utils
import (
"testing"
)
func TestCreateAccessToken(t *testing.T) {
if _, err := GenerateAccessToken(); err != nil {
t.Error(err)
}
}