more test fixes

This commit is contained in:
Roman Isaev 2025-01-25 01:05:13 +00:00
parent 27f7a5e3eb
commit c1ad175178
No known key found for this signature in database
GPG key ID: 7BE2B6A6C89AEC7F
2 changed files with 3 additions and 9 deletions

View file

@ -38,7 +38,7 @@ const selectCrossSigningKeysForUserAndKeyTypeSQL = "" +
const upsertCrossSigningKeysForUserSQL = "" +
"INSERT INTO keyserver_cross_signing_keys (user_id, key_type, key_data)" +
" VALUES($1, $2, $3, $4)" +
" VALUES($1, $2, $3)" +
" ON CONFLICT (user_id, key_type) DO UPDATE SET key_data = $3"
type crossSigningKeysStatements struct {