unbreak TestInviteShowAcceptForm

This commit is contained in:
Andre Staltz 2021-11-09 18:25:01 +02:00 committed by André Staltz
parent 8c9413d55d
commit 2d722f2098
2 changed files with 4 additions and 4 deletions

View File

@ -49,9 +49,9 @@ func (h inviteHandler) buildJoinRoomURI(token string, userAgent string) template
queryVals.Set("postTo", submissionURL.String())
joinRoomURI := url.URL{
Scheme: "ssb",
Opaque: "experimental",
RawPath: queryVals.Encode(),
Scheme: "ssb",
Opaque: "experimental",
RawQuery: queryVals.Encode(),
}
// Special treatment for Android Chrome for issue #135

View File

@ -107,7 +107,7 @@ func TestInviteShowAcceptForm(t *testing.T) {
})
}
func TestInviteShowAcceptFormOnAndroid(t *testing.T) {
func TestInviteShowAcceptFormOnAndroidChrome(t *testing.T) {
ts := setup(t)
a, r := assert.New(t), require.New(t)