Fix Android rendering by pinning Gio v0.8

This commit is contained in:
Joe Julian
2026-03-31 22:23:45 -07:00
parent 0ab444b0b9
commit beefd51b15
4 changed files with 40 additions and 10 deletions
+12 -2
View File
@@ -3282,7 +3282,12 @@ func TestUILocalLifecycleActionErrorsAreVisibleAndSpecific(t *testing.T) {
t.Run("save without configured path", func(t *testing.T) {
t.Parallel()
u := newUIWithSession("desktop", &session.Manager{})
u := newUIWithSession("desktop", &session.Manager{}, statePaths{
DefaultSaveAsPath: filepath.Join(t.TempDir(), "default-save-path.kdbx"),
RecentVaultsPath: filepath.Join(t.TempDir(), "recent-vaults.json"),
RecentRemotesPath: filepath.Join(t.TempDir(), "recent-remotes.json"),
UIPreferencesPath: filepath.Join(t.TempDir(), "ui-preferences.json"),
})
u.masterPassword.SetText("correct horse battery staple")
u.runAction("create vault", u.createVaultAction)
@@ -3299,7 +3304,12 @@ func TestUILocalLifecycleActionErrorsAreVisibleAndSpecific(t *testing.T) {
t.Run("save-as uses default target path", func(t *testing.T) {
t.Parallel()
u := newUIWithSession("desktop", &session.Manager{})
u := newUIWithSession("desktop", &session.Manager{}, statePaths{
DefaultSaveAsPath: filepath.Join(t.TempDir(), "default-save-path.kdbx"),
RecentVaultsPath: filepath.Join(t.TempDir(), "recent-vaults.json"),
RecentRemotesPath: filepath.Join(t.TempDir(), "recent-remotes.json"),
UIPreferencesPath: filepath.Join(t.TempDir(), "ui-preferences.json"),
})
u.masterPassword.SetText("correct horse battery staple")
u.defaultSaveAsPath = filepath.Join(t.TempDir(), "default-save-as.kdbx")