diff options
| author | Greg Steuck <gnezdo@google.com> | 2021-07-28 11:03:25 -0700 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2021-07-30 18:21:17 +0200 |
| commit | 5bfcec7dfd4ba51d38b41cea770ecc96e7e59d4d (patch) | |
| tree | ef129d2b1e22acfd1c790c8189d7776a82daba91 /dashboard/app/app_test.go | |
| parent | 14f590a6a765d9fbe53e2f7bacb5d9f6d7cb9063 (diff) | |
pkg/auth: move auth code into a new package for reuse in syz-hub
Diffstat (limited to 'dashboard/app/app_test.go')
| -rw-r--r-- | dashboard/app/app_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dashboard/app/app_test.go b/dashboard/app/app_test.go index 49df21d0d..777b73ce8 100644 --- a/dashboard/app/app_test.go +++ b/dashboard/app/app_test.go @@ -13,6 +13,7 @@ import ( "time" "github.com/google/syzkaller/dashboard/dashapi" + "github.com/google/syzkaller/pkg/auth" "github.com/google/syzkaller/sys/targets" "google.golang.org/appengine/user" ) @@ -57,7 +58,7 @@ var testConfig = &GlobalConfig{ FixBisectionAutoClose: true, Clients: map[string]string{ client1: password1, - "oauth": oauthMagic + "111111122222222", + "oauth": auth.OauthMagic + "111111122222222", }, Repos: []KernelRepo{ { |
